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
a program that can input number of records and can view it again the record
Explain the bubble sort algorithm.
Why c is called procedure oriented language?
What is binary tree in c?
What are the types of data files?
what type of questions arrive in interview over c programming?
Can an array be an Ivalue?
What is the right way to use errno?
What is data type long in c?
What is nested structure in c?
What are the different types of errors?
Can the sizeof operator be used to tell the size of an array passed to a function?
How to write c functions that modify head pointer of a linked list?
In which layer of the network datastructure format change is done
What are enumerated types?