Question: Can you please write these in language C for someone with beginner level knowledge ( first grader at college ) to understand? Thank you. Example:

Can you please write these in language C for someone with beginner level knowledge (first grader at college) to understand? Thank you.
Example: Print Out in Structure
Write a loop that prints the numbers 1 through 100 with each group of 10 numbers starting on a new line, and every pair of numbers on a line separated by a space.
Example:
12345678910
11121314151617181920
dots
919293949596979899100
Hint: You may find it useful to use this statement in the loop body:
if num %10==0)
{
printf ("
");
}
Exercise: Multiples of a Number
Task: Code up the below algorithm:
Initialize a counter
Print initial count
Keep looping until the counter is bigger than 100
in every iteration multiply count by 3
in every iteration print current value of count
Type the current value of count upon exit from loop
Exercise: Complete Missing Code
Task: Complete the following loop so that it prints all powers of two less than 30,000, starting with 124816.
Hint: You can do this by adding a single **= statement to the loop.
num =1;
while num 30000
{
printf ("%d
", num);
...
}
 Can you please write these in language C for someone with

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!