what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / phani
getch() is used to read the character,
but getche()is used to read and display character on output.
| Is This Answer Correct ? | 51 Yes | 33 No |
Post New Answer View All Answers
What is structure padding in c?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Why isnt any of this standardized in c?
Explain 'bit masking'?
What is getch () for?
Is fortran still used in 2018?
Explain how can you tell whether two strings are the same?
#include
Write a program to print ASCII code for a given digit.
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Explain what is a 'locale'?
Why calloc is better than malloc?
What are the advantages of c preprocessor?
What is the full form of getch?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.