In which header file is the null macro defined?
No Answer is Posted For this Question
Be the First to Post Answer
What is an anonymous union and where to apply that ?
What is volatile c?
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
Who is invented by c?
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
How can you check to see whether a symbol is defined?
Explain indirection?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
What does emoji p mean?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array