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 prgram of swapping with 2 valiables
What is a memory leak in structures? How can we rectify that?
Is javascript written in c?
What is d scanf?
Write a program to show the change in position of a cursor using c
How many types of operator or there in c?
What are the 5 data types?
What do you mean by command line argument?
What is the difference between ‘g’ and “g” in C?
Write a function that will take in a phone number and output all possible alphabetical combinations
wat are the two methods for swapping two numbers without using temp variable??
what is the difference between structure and union?