#include<stdio.h>
void main()
{
int a [5];
for (i=0; i<=4; i++)
printf(ā%dā ,a[i]);
}
Answer Posted / neelima
it gives a garbage values
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What is a #include preprocessor?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
What is page thrashing?
What do you understand by friend-functions? How are they used?
Why flag is used in c?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
Why is c called c not d or e?
What is the difference between arrays and pointers?
Can you add pointers together? Why would you?
How can you tell whether a program was compiled using c versus c++?
How can you invoke another program from within a C program?
How to declare a variable?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What does struct node * mean?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +