#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 is the acronym for ansi?
Is null valid for pointers to functions?
FILE PROGRAMMING
Explain what is a stream?
Explain what is the difference between a string and an array?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
What is the condition that is applied with ?: Operator?
Explain what is the difference between the expression '++a' and 'a++'?
What is the use of pointers in C?
What is the g value paradox?
What is the use of sizeof () in c?
c language interview questions & answer
What is the heap in c?
How do you determine a file’s attributes?
What is function prototype in c with example?