Why do we use null pointer?
What is array within structure?
What is the difference between āgā and āgā in C?
What is the purpose of void in c?
What is a pointer variable in c language?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What are the advantages of external class?
explain what is a newline escape sequence?
What are data structures in c and how to use them?
What does double pointer mean in c?
What is a built-in function in C?
What is cohesion and coupling in c?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What are 'near' and 'far' pointers?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }