What happens if header file is included twice?
What is table lookup in c?
Explain what are the standard predefined macros?
#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?
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What is huge pointer in c?
difference between c and c++
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
Is there any demerits of using pointer?
Why does this code crash?