What is a const pointer in c?
what is const volatile?
list the no of files created when c source file is compiled
What is string function c?
What is the exact difference between '\0' and ""
Why structure is used in c?
i want to know the procedure of qualcomm for getting a job through offcampus
how we can make 3d venturing graphics on outer interface
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
what is the meaning of java that is (J A V A) full form of JAVA
71 Answers AKS University, Bhel, BNL, BPO, HCL, Peacecon,
What is malloc calloc and realloc in c?
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
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?