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 / himanshu
b
by himanshu kiims
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Describe the difference between = and == symbols in c programming?
What is derived datatype in c?
Can we declare a function inside a function in c?
Differentiate between a structure and a union.
Explain what is wrong in this statement?
What is the difference between the expression “++a” and “a++”?
What is a macro in c preprocessor?
What is function and its example?
What are the three constants used in c?
What are the different file extensions involved when programming in C?
How many parameters should a function have?
Why can’t constant values be used to define an array’s initial size?
What is scope and lifetime of a variable in c?