which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / soumya
all are preprocessor
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
In which header file is the null macro defined?
What is a static variable in c?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
What is the use of a ‘ ’ character?
How can you find the day of the week given the date?
Why do we use header files in c?
How do you write a program which produces its own source code as output?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
What is a null string in c?
What are local static variables? How can you use them?
What are the different types of linkage exist in c?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers