w3resource

Print n lines of 3 consecutive numbers starting from 1


C Practice Exercise

Write a C program to print 3 numbers on a line, starting with 1 and printing n lines. Accept the number of lines (n, integer) from the user.

Pictorial Presentation:

C Programming: Print 3 numbers in a line, starting from 1 and print n lines

Sample Solution:

C Code:

#include <stdio.h>
int main() {
    int a, i, j = 1, x = 0;

    // Prompt for user input
    printf("Input number of lines: ");
    scanf("%d", &a);

    // Loop for each line
    for(i = 1; i <= a; i++) {
        // Loop to print numbers
        while(x < 3) {
            printf("%d ", j++);
            x++;
        }
        x = 0; // Reset the counter
        printf("\n");
    }

    return 0;
}

Sample Output:

Input number of lines: 5                                               
1 2 3                                                                  
4 5 6                                                                  
7 8 9                                                                  
10 11 12                                                               
13 14 15

Flowchart:

C Programming Flowchart: Print 3 numbers in a line, starting from 1 and print n lines

For more Practice: Solve these Related Problems:

  • Write a C program to print n lines of 4 consecutive numbers starting from 1.
  • Write a C program to display a grid of numbers with a fixed number of columns, where each line continues the sequence from the previous line.
  • Write a C program to print n lines, each containing consecutive numbers in an arithmetic progression with a user-defined common difference.
  • Write a C program to print a rectangular pattern of numbers with a specified number of rows and columns, filling the grid sequentially.

C programming Code Editor:



Previous: Write a C program to find all numbers which dividing it by 7 and the remainder is equal to 2 or 3 between two given integer numbers.
Next: Write a C program to print a number, it’s square and cube in a line, starting from 1 and print n lines. Accept number of lines (n, integer) from the user.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.