What is dynamic variable in c?
Describe the modifier in c?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(“%d”,s.x); }
Explain the process of converting a Tree into a Binary Tree.
Why do some versions of toupper act strangely if given an upper-case letter?
What does 1f stand for?
What is restrict keyword in c?
Do you know what is the purpose of 'extern' keyword in a function declaration?
what is c language.
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
What does sizeof return c?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
What are variables and it what way is it different from constants?