what is the difference between getch() and getche()?
Answer Posted / umer khan
getch() is a library file to #include <conio.h> which is mostly used in stidios compiler......
while getche() takes input frm the user withtout presing '\r'
| Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What does %p mean?
How do we print only part of a string in c?
How many parameters should a function have?
How do you determine the length of a string value that was stored in a variable?
What is the difference between far and near ?
Distinguish between actual and formal arguments.
regarding pointers concept
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
Give basis knowledge of web designing ...
What is pointer to pointer in c with example?
Tell me can the size of an array be declared at runtime?
What is spark map function?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.