write a program whose output will be-
1
12
123
1234
Answer Posted / shrikantauti
main()
{
int i;
for (i=1;i<=4;i++)
{
printf(i);
}
}
| Is This Answer Correct ? | 4 Yes | 28 No |
Post New Answer View All Answers
Differentiate Source Codes from Object Codes
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What are the 5 types of organizational structures?
What is meant by 'bit masking'?
Explain how can I make sure that my program is the only one accessing a file?
What is scope of variable in c?
What is #define used for in c?
The statement, int(*x[]) () what does in indicate?
Explain the advantages of using macro in c language?
Can 'this' pointer by used in the constructor?
What is nested structure with example?
Can i use “int” data type to store the value 32768? Why?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
What is this infamous null pointer, anyway?
What is wrong with this declaration?