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
Answer Posted / jalal
b)c=getc(c)
| Is This Answer Correct ? | 7 Yes | 5 No |
Post New Answer View All Answers
Explain how does flowchart help in writing a program?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
write a c program for swapping two strings using pointer
Why array is used in c?
Do you know the difference between exit() and _exit() function in c?
What is call by value in c?
How can I write a function analogous to scanf?
Differentiate between the = symbol and == symbol?
What is the 'named constructor idiom'?
How to get string length of given string in c?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is the use of typedef in c?
What is the difference between #include and #include 'file' ?
How do you define structure?
Write a program which returns the first non repetitive character in the string?