Can we compile a program without main() function?
Why is it that not all header files are declared in every C program?
Can I initialize unions?
What is actual argument?
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
write a C code To reverse a linked list
What does the error 'Null Pointer Assignment' mean and what causes this error?
What happens if header file is included twice?
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
How can I read a directory in a c program?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
What is formal argument?