main()
{
int arr[5]={23,67};
printf("%d%d%d",arr[2],arr[3],arr[4]);
}
Answer Posted / kantilal
000
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
What is the scope of global variable in c?
how to count no of words,characters,lines in a paragraph.
What is the use of void pointer and null pointer in c language?
What are all different types of pointers in c?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is 2c dna?
In C language what is a 'dangling pointer'?
Differentiate between static and dynamic modeling.
Explain enumerated types.
What is dangling pointer in c?
What are the three constants used in c?
Why do we write return 0 in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
If you know then define #pragma?
what is different between auto and local static? why should we use local static?