progrem to generate the following series
1
12
123
1234
12345
Answer Posted / banavathvishnu
main()
{
int a;
int temp =0;
for(i=1;i<=5;i++)
{
temp = temp *10 +i;
printf("%d",temp);
}
| Is This Answer Correct ? | 23 Yes | 19 No |
Post New Answer View All Answers
Explain how do you declare an array that will hold more than 64kb of data?
What are identifiers c?
Why c language?
what is the role you expect in software industry?
Why is not a pointer null after calling free?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is bash c?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What does the message "automatic aggregate intialization is an ansi feature" mean?
can any one provide me the notes of data structure for ignou cs-62 paper
What is void pointers in c?
Ow can I insert or delete a line (or record) in the middle of a file?
What are logical errors and how does it differ from syntax errors?
Do array subscripts always start with zero?
Which is better malloc or calloc?