Differentiate between functions getch() and getche().
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
Explain what is the heap?
What is a Genralised LInked List?? Please give a detailed explation of it..
write a program that print itself even if the source file is deleted?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(“%d\n”,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
What is s in c?
Write a program to add a given duration with time(24hrs format)
What's a good way to check for "close enough" floating-point equality?
What is wrong with this code?
Explain how can I avoid the abort, retry, fail messages?
What is double pointer in c?
What is the difference between a structure and a union?