Is array name a pointer?
No Answer is Posted For this Question
Be the First to Post Answer
Can true be a variable name in c?
Explain what is operator promotion?
what is the difference between NULL & NUL keywords in C?
Can a void pointer point to a function?
Explain argument and its types.
What is #line used for?
What does 1f stand for?
Explain the binary height balanced tree?
Ow can I insert or delete a line (or record) in the middle of a file?
Compare array data type to pointer data type
Why does the call char scanf work?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }