#include<stdio.h>
void main()
{
int a [5];
for (i=0; i<=4; i++)
printf(ā%dā ,a[i]);
}
Answer Posted / guest
0
1
2
3
4
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What does sizeof int return?
p*=(++q)++*--p when p=q=1 while(q<=6)
How can I trap or ignore keyboard interrupts like control-c?
Can main () be called recursively?
Write a code to generate a series where the next element is the sum of last k terms.
What is the difference between abs() and fabs() functions?
Why is it important to memset a variable, immediately after allocating memory to it ?
What is c value paradox explain?
Define Array of pointers.
Once I have used freopen, how can I get the original stdout (or stdin) back?
what is the diffrenet bettwen HTTP and internet protocol
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
When should a type cast not be used?
What is wrong with this code?
Write a program to check prime number in c programming?