which one is not preprocessor directive
a)#if b)#elif c)#undef d)#pragma
Answer Posted / magesh
All are preprocessor directive
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Differentiate between the = symbol and == symbol?
What is time null in c?
What are identifiers in c?
Difference between Function to pointer and pointer to function
What library is sizeof in c?
what is the basis for selection of arrays or pointers as data structure in a program
Describe the difference between = and == symbols in c programming?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is the maximum no. of arguments that can be given in a command line in C.?
What is double pointer in c?
What are the string functions? List some string functions available in c.
How can a program be made to print the line number where an error occurs?
Can a function argument have default value?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
What is else if ladder?