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
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What are the basic data types associated with c?
Write a program on swapping (100, 50)
What is the use of c language in real life?
What are the standard predefined macros?
What is declaration and definition in c?
What is variable declaration and definition in c?
What is typeof in c?
How do you construct an increment statement or decrement statement in C?
How do you define a string?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is self-referential structure in c programming?
What is the process to generate random numbers in c programming language?
Do variables need to be initialized?
What is pointer and structure in c?