Explain setjmp()?
No Answer is Posted For this Question
Be the First to Post Answer
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
what is the different between data structure and data type?
What is merge sort in c?
how do we remove the printed character in printf statement and write next it it
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
When can you use a pointer with a function?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
How can you increase the size of a statically allocated array?
Explain the concept of "dangling pointers" in C.
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.