#include<stdio.h>
void main()
{
int a [5];
for (i=0; i<=4; i++)
printf(ā%dā ,a[i]);
}
Answer Posted / kapil
1 2 3 4 5
| Is This Answer Correct ? | 3 Yes | 14 No |
Post New Answer View All Answers
Do you know the use of 'auto' keyword?
Can 'this' pointer by used in the constructor?
Explain how can type-insensitive macros be created?
Can we change the value of #define in c?
What are the main characteristics of c language describe the structure of ac program?
What is stack in c?
Explain what is page thrashing?
What is difference between class and structure?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What does sizeof function do?
What is the difference between ++a and a++?
Is c dynamically typed?
Can you please explain the difference between exit() and _exit() function?
What does sizeof return c?
How can I list all of the predefined identifiers?