How can I increase the allowable number of simultaneously
open files?
What is ambagious result in C? explain with an example.
why we need function pointers?
Which is better malloc or calloc?
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
Is javascript based on c?
What is break statement?
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
What does char * * argv mean in c?
What is the correct declaration of main?
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
How do you use a pointer to a function?