⭐📚Intermediate
Print Continuous Character Pattern
Print continuous alphabet pattern
Print a continuous character pattern where characters flow continuously across rows.
C Program to Print Continuous Character Pattern
continuous_char_pattern.c
C
1#include <stdio.h>23int main() {4 int rows;5 char ch = 'A';6 7 printf("Enter number of rows: ");8 scanf("%d", &rows);9 10 printf("\nContinuous Character Pattern:\n");11 12 for (int i = 1; i <= rows; i++) {13 for (int j = 1; j <= i; j++) {14 printf("%c ", ch);15 ch++;16 }17 printf("\n");18 }19 20 return 0;21}Output
Enter number of rows: 5
Continuous Character Pattern:
A
B C
D E F
G H I J
K L M N O
Related Examples
Want to Learn More?
Explore our comprehensive tutorials for in-depth explanations of C programming concepts.
Browse Tutorials