- Home
- C Examples
- Parameterized Preproccessor
C - Parameterized Preproccessor
विवरण :
कोई विवरण नहीं है |
सोर्स कोड :
#include <stdio.h> #include <conio.h> #define add(x,y) x+y void main() { printf("addition of two numbers is %d", add(5, 6)); getch (); }
आउटपुट :
addition of two numbers is 11