#include<stdio.h>
void main()
{
int a [5];
for (i=0; i<=4; i++)
printf(ā%dā ,a[i]);
}
Answer Posted / sameer mohammed
It shows us garbage values as because the integer type
array is declared but it is not defined.
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
How can you draw circles in C?
What is variable in c example?
Which is better pointer or array?
What is context in c?
How to draw the flowchart for structure programs?
How can I read a binary data file properly?
What is the role of && operator in a program code?
What the different types of arrays in c?
What is a void * in c?
Can a function argument have default value?
What is main return c?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10