which one of follwoing will read a character from keyboard
and store in c
a)c=getc()
b)c=getchar()
c)c=getchar(stdin)
d)getc(&c)
e)none
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
b id the correct option.......
c=getchar(void)
thank u
| Is This Answer Correct ? | 26 Yes | 0 No |
Answer / moolshankershukla
first define :
char c;
printf("enter character ");
c=getchar();
| Is This Answer Correct ? | 5 Yes | 0 No |
write a program in c language for the multiplication of two matrices using pointers?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is data structure in c language?
Explain what is the concatenation operator?
write a program to generate 1st n fibonacci prime number
What does the message "warning: macro replacement within a string literal" mean?
what is the difference between unix os and linux os
Explain how can I remove the trailing spaces from a string?
How do you convert strings to numbers in C?
prog for 1st five prime numbers in 2^x - 1
What is modifier & how many types of modifiers available in c?
What is break statement?