Write a program to reverse a linked list in c.
how to find the given number is prime or not?
List some of the static data structures in C?
difference between semaphores and mutex?
declare afunction pointer to int printf(char *)?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What's the best way of making my program efficient?
char ch="{'H','I',0};printf("%s",ch);what is output
What is void c?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
write a programme to convert temperature from farenheit to celcius?
Explain what are multidimensional arrays?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15