Explain setjmp()?


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

Post New Answer

More C Interview Questions

What extern c means?

0 Answers  


how to use virual function in real time example

1 Answers   CTS, Wipro,


How does normalization of huge pointer works?

0 Answers  


typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


What is the use of volatile?

0 Answers  






What is a list in c?

0 Answers  


what is the similarities between. system call and library function?

1 Answers   Wipro,


What is a void pointer? When is a void pointer used?

0 Answers   Aspire, Infogain,


What is the difference b/w Structure & Array?

6 Answers  


what is const volatile?

2 Answers  


Is c procedural or object oriented?

0 Answers  


which operator having highest precedence? a.)+ b.)++ c.)= d.)%

4 Answers  


Categories