How is a macro different from a function?


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

Post New Answer

More C Interview Questions

How can you determine the size of an allocated portion of memory?

0 Answers   Aspire, Infogain,


biggest of two no's with out using if condition statement

8 Answers  


How can I invoke another program (a standalone executable, or an operating system command) from within a c program?

0 Answers  


What is the right type to use for boolean values in c? Is there a standard type?

0 Answers  


#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  


Write a programe print the sum of series 0,1,2,.....10

7 Answers  


Which of these functions is safer to use : fgets(), gets()? Why?

0 Answers  


main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }

2 Answers   Vector, Vector India,


Find MAXIMUM of three distinct integers using a single C statement

0 Answers  


C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions

0 Answers  


What does void main () mean?

0 Answers  


What are enums in c?

0 Answers  


Categories