Wisdom Materials
Home
About Us
Our Clients
Careers
Services
Education
Jobs
News
Business
Health
Astrology
Entertainment
RealEstate
Devotion
Contact Us
C Programs
/ Biggest Of Two Numbers Using Macro C Program
Program
Click to the Copy Program
#include
#define a 5 #define b 10 void main() { if(a>b) printf("A is big."); else printf("B is big."); }
Input
a=5, b=10
Output
B is big.
Home
Back