What is malloc and calloc?
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(); }
What language is windows 1.0 written?
What is the difference between procedural and declarative language?
what is the role you expect in software industry?
Explain setjmp()?
Explain what header files do I need in order to define the standard library functions I use?
Can a file other than a .h file be included with #include?
What is an expression?
What is header file definition?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
write a program to find out prime number using sieve case?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is sizeof in c?
What is the use of a ‘ ’ character?