#include<stdio.h>
void main()
{
int a [5];
for (i=0; i<=4; i++)
printf(“%d” ,a[i]);
}
Answer Posted / purnima
it gives compile time error because here the var i is not
declared .aIn c a var must be declared before is usage
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is #define in c?
What is c system32 taskhostw exe?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What is character set?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
how many errors in c explain deply
Why ca not I do something like this?
In a switch statement, explain what will happen if a break statement is omitted?
Are pointers integers in c?
What does the function toupper() do?
How to define structures? ·
What are c identifiers?
What is array in c with example?
Is c still used?
In which header file is the null macro defined?