Why we not create function inside function.
What is pointers in c with example?
code for replace tabs with equivalent number of blanks
What are the keywords in c?
What are the key features of C?
What is a pointer?
define string ?
Are the expressions * ptr ++ and ++ * ptr same?
Ow can I insert or delete a line (or record) in the middle of a file?
Write a program to compute the following 1!+2!+...n!
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
What is scanf () in c?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y