What is getche() function?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of fflush() function?
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
What is the difference between struct and typedef struct in c?
Do you know the use of 'auto' keyword?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
What is an auto keyword in c?
Explain the use of fflush() function?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
how to set Nth bit of a variable?
in which language c language is written?
What is the difference between procedural and functional programming?