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 are the 10 different models of writing an addition program in C language?
What are the c keywords?
What is the auto keyword good for?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
If errno contains a nonzero number, is there an error?
What are static variables in c?
What is define c?
What is the difference between scanf and fscanf?
What does struct node * mean?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What is your stream meaning?
How many levels of pointers have?
How to throw some light on the b tree?
Explain high-order and low-order bytes.
What is the use of a semicolon (;) at the end of every program statement?