Is null valid for pointers to functions?
No Answer is Posted For this Question
Be the First to Post Answer
In C language what is a 'dangling pointer'?
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
What is the relationship between pointers and data structure?
what is differnence b/w macro & functions
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
What is the use of gets and puts?
b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720
what is difference between null and nul in c language
What is a memory leak in structures? How can we rectify that?
How Many Header Files in c?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
Why is C called a middle-level language?