Answer Posted / aruna.r
#include<stdio.h>
#include<conio.h>
void main()
{
char a[4];
int i;
clrscr();
printf("enter the charactor");
for(i=0;i<4;i++)
{
scanf("%c",&a[i]);
}
getch();
}
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is self-referential structure in c programming?
how we can make 3d venturing graphics on outer interface
Compare array data type to pointer data type
What is the use of structure padding in c?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What would be an example of a structure analogous to structure c?
What functions are used in dynamic memory allocation in c?
What are the general description for loop statement and available loop types in c?
What is exit() function?
Explain the properties of union.
What is the concatenation operator?
Is it better to use malloc() or calloc()?
Write a program of advanced Fibonacci series.
How to write a code for reverse of string without using string functions?
Why do we use pointer to pointer in c?