Explain that why C is procedural?
Here is a neat trick for checking whether two strings are equal
Explain what is wrong with this program statement?
What is d'n in c?
Define recursion in c.
How would you sort a linked list?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Describe newline escape sequence with a sample program?
Who is invented by c?
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
What is the difference between static and global variables?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is the use of gets and puts?