Is both getch() and getchar() functions are similar? if it is
similar means why these two functions are used for same usage?
if it is not similar means what is the difference?
Answer / madhu.s.a
No ,its not same because getch()is used to get the output
screen and getchar() is used to get the single character
input.
I dont know whether it is correct or not.
| Is This Answer Correct ? | 21 Yes | 8 No |
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
Write a program that receives as input a number omaadel-n-print, four digits.
What is variables in c?
When should the volatile modifier be used?
Write a program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.
What is keyword in c?
I didn't count the ducks that I saw in line, but I do remember that one duck was in front of two ducks, another duck behind two ducks. How many ducks did I see?
what is printf
What are the different properties of variable number of arguments?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
What's a good way to check for "close enough" floating-point equality?
any "C" function by default returns an a) int value b) float value c) char value d) a & b