which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / shiva
All are preprocessor directives
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What is a pointer and how it is initialized?
how to make a scientific calculater ?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
All technical questions
How can you read a directory in a C program?
Apart from dennis ritchie who the other person who contributed in design of c language.
Why is it important to memset a variable, immediately after allocating memory to it ?
Is boolean a datatype in c?
Can the size of an array be declared at runtime?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
using only #include
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Can stdout be forced to print somewhere other than the screen?
What is use of #include in c?