top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What would be the difference between following macro definition?

+4 votes
246 views

1)

#define begin main

void begin() {

}

2)

#define begin  m # # a # # i # # n

void begin() {

}

3)

#define(m,a,i,n) m # # a # # i # # n

# define start begin(m,a,i,n)

void start()
{

}
posted Sep 18, 2014 by Aman

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
0 votes

What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?

+1 vote

What is huffman coding and what would be huffman code for the following characters?

Character   Frequency
a           10
l           15
i           12
o           3
u           4
s           13
t           1

Explain with suitable diagram?

...