Answer Posted / antony
#include<stdio.h>
#include<conio.h>
void main()
{
int a[10],i;
for(i=1;i<=10;i++)//getting data from user
{
scanf("%d",&a[i]);
}
for(i=1;i<=10;i++)//print the data
{
printf("%d",a[i])
}
getch();
}
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What do you mean by c what are the main characteristics of c language?
Are global variables static in c?
what is the syallabus of computer science students in group- 1?
Explain what is meant by 'bit masking'?
What does d mean?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
What is New modifiers?
What are header files in c programming?
What is linear search?
What is a floating point in c?
Is calloc better than malloc?
Why can't I perform arithmetic on a void* pointer?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
List some of the static data structures in C?
What is variable initialization and why is it important?