How can I make it pause before closing the program output window?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is "Duff's Device"?

0 Answers   Celstream,


write a C program to print the program itself ?!

16 Answers   TCS,


#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?

4 Answers   IIIT,


what is stack , heap ,code segment,and data segment

0 Answers  


What is bss in c?

0 Answers  






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

2 Answers  


What is unary operator?

0 Answers  


Difference between data structure and data base.

7 Answers   CTS, Value Labs, Zoho,


Write a program to print the prime numbers from 1 to 100?

7 Answers  


What is identifiers in c with examples?

0 Answers  


Why is c called c not d or e?

0 Answers  


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

0 Answers   Wilco,


Categories