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
Post New Answer View All Answers
Is fortran still used in 2018?
What is the benefit of using #define to declare a constant?
Can we change the value of constant variable in c?
What is character set?
What are the types of pointers in c?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
How can you increase the size of a dynamically allocated array?
What is the significance of c program algorithms?
What are the basic data types associated with c?
all c language question
please explain every phase in the "SDLC" in the dotnet.
How many keywords (reserve words) are in c?
What is a sequential access file?
Explain what is the difference between text files and binary files?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.