Explain how do you override a defined macro?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is the use of define in c?

0 Answers  


What is 2c dna?

0 Answers  


What is clrscr in c?

0 Answers  


main difference between c and c++ language

1 Answers  


#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?

4 Answers   Ramco,


How can I find out the size of a file, prior to reading it in?

0 Answers  


write a program in c language to print your bio-data on the screen by using functions.

0 Answers  


What are the advantages of external class?

0 Answers  


Can math operations be performed on a void pointer?

0 Answers  


Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********

4 Answers  


What are the types of bitwise operator?

0 Answers  


Write a program that takes a 5 digit number and calculates 2 power that number and prints it.

1 Answers  


Categories