which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answers were Sorted based on User's Feedback
Answer / debasish mishra
#pragma is not a preprocessor directive
| Is This Answer Correct ? | 2 Yes | 9 No |
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
Write a program for print infinite numbers
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
main() { float a=3.2e40; printf("%d",a); }
How can I copy just a portion of a string?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
What is sizeof int?
What is main () in c?
How is pointer initialized in c?
What is the benefit of using an enum rather than a #define constant?