What is ## preprocessor operator in c?
Are pointers really faster than arrays?
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
how does printf function work
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
write a C code To reverse a linked list
What functions are used in dynamic memory allocation in c?
Why is c faster?
Explain what are the different data types in c?
What are actual arguments?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
What does s c mean in text?
What are identifiers c?