Answer Posted / reejusri
C don't use the term exception handling, but include
facilities that allow implementing similar functionality.
The most common way to implement exception handling in
standard C is to use setjmp/longjmp functions.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Are local variables initialized to zero by default in c?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
How do you print an address?
What is an lvalue in c?
What is scope of variable in c?
What is call by reference in functions?
how can I convert a string to a number?
What does c mean in basketball?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
How can you increase the size of a statically allocated array?
What are the features of c language?
What are types of functions?
write a programming in c to find the sum of all elements in an array through function.
How to get string length of given string in c?
What are the uses of a pointer?