#define MAX 3
main()
{
printf("MAX = %d \n",MAX );
#undef MAX
#ifdef MAX
printf("Vector Institute”);
#endif
Answer Posted / rohit
it will give a compile error..
| Is This Answer Correct ? | 4 Yes | 8 No |
Post New Answer View All Answers
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is a spanning Tree?
What are runtime error?
Can you please explain the scope of static variables?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What is an example of structure?
What are types of preprocessor in c?
What is static and auto variables in c?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
What does a pointer variable always consist of?
What are the modifiers available in c programming language?
What is an array in c?
Where local variables are stored in c?
What is the difference between printf and scanf )?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.