Explain the use of #pragma exit?


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

Post New Answer

More C Interview Questions

what information does the header files contain?

6 Answers   BSNL, Cisco, GDA Technologies,


Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort

7 Answers  


Write a program to swap two numbers without using third variable?

0 Answers  


How can you convert integers to binary or hexadecimal?

0 Answers  


Write a program to generate random numbers in c?

0 Answers  


what is ans for this scanf(%%d",c);

1 Answers  


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

0 Answers   Google,


Can a variable be both constant and volatile?

0 Answers  


What is array of pointers to string?

0 Answers  


What is #error and use of it?

0 Answers  


how to write a prog in c to convert decimal number into binary by using recursen function,

1 Answers  


Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"

6 Answers   IBM,


Categories