What is main void in c?
What is wild pointer in c?
why 'c' is called middle level language.
Difference between goto, long jmp() and setjmp()?
Is it valid to address one element beyond the end of an array?
write a c program to print "Welcome" without using semicolon in the whole program ??
mplementation of stack using any programing language
what is the return type of printf
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
how many key words availabel in c a) 28 b) 31 c) 32
What is the sizeof () operator?
char *p="name"; printf(p);
Write a program to check whether a number is prime or not using c?