what is meant by the "equivalence of pointers and arrays" in
C?
Answers were Sorted based on User's Feedback
Answer / sameer
name of array(without subscript) points to the first
location of array.
eg. a[10].
a points to first location of array.
| Is This Answer Correct ? | 1 Yes | 3 No |
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
find the size of structure without using the size of function
Explain about block scope in c?
Is c weakly typed?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
Explain the binary height balanced tree?
What is c language & why it is used?
How do we make a global variable accessible across files? Explain the extern keyword?
What is the meaning of c in c language?
Do you know null pointer?
How does placing some code lines between the comment symbol help in debugging the code?
What's the best way of making my program efficient?