what is the use of macro program



what is the use of macro program..

Answer / chaitali anand tendulkar

Macro is preprocessor directives that are defined using #
define. The combination backslash/new line is deleted
before preprocessing begins, so the directives can be
spread over several physical lines. this lines should
constitute a single logical line.

Is This Answer Correct ?    5 Yes 2 No

Post New Answer

More C Interview Questions

main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*

1 Answers  


to get a line of text and count the number of vowels in it

2 Answers  


When can a far pointer be used?

0 Answers  


Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"

6 Answers   IBM,


Why pointers are used?

0 Answers  


what does ‘#include’ mean?

1 Answers   TCS,


what r the cpu registers r ther?

1 Answers  


Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;

5 Answers   Accenture, TCS,


What are the differences between new and malloc in C?

0 Answers   Amazon,


Is there a way to switch on strings?

0 Answers  


write a c program for swapping two strings using pointer

0 Answers  


int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?

3 Answers  


Categories