Answer Posted / manav kothari
# is preprocessor directive. It will execute before compilation is done
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why ca not I do something like this?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What is the difference between typedef struct and struct?
what is the format specifier for printing a pointer value?
Explain bitwise shift operators?
Is c++ based on c?
Why do we use null pointer?
What are pointers?
How can I do graphics in c?
Tell me what are bitwise shift operators?
Write a program to reverse a given number in c language?
What is the difference between array and structure in c?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...