Answer Posted / rina
#include<stdio.h>
#include<conio.h>
void main()
{
int i,a[5],n;
clrscr();
printf("\nenter the no.");
scanf("%d",&n);
for(i=1;i<=5;i++)
{
scanf("%d",&a[i]);
}
for(i=1;i<=5;i++)
{
printf("%d",a[i]);
}
getch();
}
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Why do we use null pointer?
What is a nested loop?
What is use of bit field?
Why do we write return 0 in c?
What is auto keyword in c?
What is the use of bitwise operator?
What is a pointer in c plus plus?
What is cohesion in c?
main() { printf("hello"); fork(); }
Is main an identifier in c?
Explain the properties of union.
Is array a primitive data type in c?
What does 3 mean in texting?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
What are the usage of pointer in c?