- 2

how to print this pattern in c language

12345 23456 34567 45678 56789 *swapped description with title.

2nd Aug 2018, 8:32 AM
jyo berwal
3 Réponses
+ 8
#include <stdio.h> int main() { printf("Hello, World!\n"); return 0; } https://www.sololearn.com/learn/1344/?ref=app Please Fix your question and use the correct tags. https://www.sololearn.com/Discuss/1316935/?ref=app
2nd Aug 2018, 8:36 AM
Koketso Dithipe
Koketso Dithipe - avatar
+ 1
int number = 1234; int increase = 11111; for (int i=0; i <5; i++){ cout <<number; number+=increase } //This is in C++, change it to the language you want
2nd Aug 2018, 8:37 AM
Alexandru Turculet
Alexandru Turculet - avatar
2nd Aug 2018, 10:48 AM
hinanawi
hinanawi - avatar