what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / padma
What is a meaning of initgraph in C ......
| Is This Answer Correct ? | 15 Yes | 27 No |
Post New Answer View All Answers
How does normalization of huge pointer works?
How do I get an accurate error status return from system on ms-dos?
Write a program with dynamically allocation of variable.
What is dynamic dispatch in c++?
What oops means?
What is stack in c?
Write a progarm to find the length of string using switch case?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
How to compare array with pointer in c?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Differentiate between ordinary variable and pointer in c.
How can I implement a delay, or time a users response, with sub-second resolution?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
Explain what is the difference between a string and an array?