How can I trap or ignore keyboard interrupts like control-c?


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

Post New Answer

More C Interview Questions

Difference between fopen() and open()?

3 Answers   Aricent,


#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }

9 Answers   Burning Glass,


write a program that explain #define and # undef directive

1 Answers  


main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail

6 Answers   TCS,


Explain b+ tree?

0 Answers  






Where are the auto variables stored?

0 Answers   TISL,


sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?

2 Answers  


write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1

3 Answers  


What is the difference between printf and scanf )?

0 Answers  


how to return 1000 variables from functio9n in c?plz give me code also

6 Answers  


What has to put when we are inserting as assembly language code into the C code? or When we are inserting as assembly language code into the C code we have to insert one thing at the start and of the assembly language. What are they?

2 Answers  


What is array of structure in c programming?

0 Answers  


Categories