Explain the difference between exit() and _exit() function?
No Answer is Posted For this Question
Be the First to Post Answer
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
how to swap 4 number without using temporary number?
How do you use a 'Local Block'?
Do character constants represent numerical values?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
How many keywords are there in c?
Tell me the use of bit field in c language?
Why dont c comments nest?
Write a program to generate random numbers in c?
What is pass by reference in functions?
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
Compare interpreters and compilers.