#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
How can this be legal c?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Should a function contain a return statement if it does not return a value?
What is c language in simple words?
Give me the code of in-order recursive and non-recursive.
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What is the difference between printf and scanf in c?
What is NULL pointer?
What is wrong with this initialization?
about c language
How can I prevent another program from modifying part of a file that I am modifying?
Why do we write return 0 in c?
What is meant by high-order and low-order bytes?
What does the error 'Null Pointer Assignment' mean and what causes this error?