how can i make a program with this kind of output..
Enter a number: 5
0
01
012
0123
01234
012345
01234
0123
012
01
0
Answer Posted / vignesh1988i
A SMALL chnge in the above program... in first for loop 'n'
must be changed as 'm'
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
What is the use of a ‘ ’ character?
Can we change the value of constant variable in c?
What is the difference between printf and scanf in c?
How do I read the arrow keys? What about function keys?
Why do we need a structure?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Between macros and functions,which is better to use and why?
How can you draw circles in C?
Are pointers integers in c?
What is formal argument?
What are the valid places to have keyword “break”?
What is the use of sizeof () in c?
When should the register modifier be used? Does it really help?
What is quick sort in c?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.