Explain the difference between getch() and getche() in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is typeof in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Are pointers integers in c?
how to write palindrome program?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
What is the difference between struct and union in C?
What is the purpose of #pragma directives in C?
Which header file is essential for using strcmp function?
what is level of tree if leaf node is at level 4.please explain.