Explain the advantages of using macro in c language?


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

Post New Answer

More C Interview Questions

#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?

4 Answers   Ramco,


how do you redirect stdout value from a program to a file?

1 Answers  


how to connect oracle in C/C++.

3 Answers   TCS, Wipro,


What is .obj file in c?

0 Answers  


what is the difference between global variable & static variable declared out side all the function in the file.

2 Answers  






Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?

2 Answers   Accenture,


What is a pointer in c?

0 Answers  


What are nested functions in c?

0 Answers  


When should a type cast not be used?

0 Answers  


What is typedef example?

0 Answers  


When should the volatile modifier be used?

0 Answers  


How can I find the modification date and time of a file?

0 Answers  


Categories