बिजनेस मार्केटिंग का लो कॉस्ट फंडा , अपने मोबाइल से ऑटो sms भेजकर मार्केटिंग करे विजिट करे http://autotextsms.com/ बिजनेस मार्केटिंग का लो कॉस्ट फंडा http://autotextsms.com/

Search This Blog

Translate

c program example micro with argument

C program to Calculate square number using argument macro,
C program to Calculate square number using  macro with argument, c program example micro with argument


#include
#include
#define SQUARE(x) (x*x)
void main()
{
int no;
clrscr();
printf("Enter the number=");
scanf("%d",&no);
printf("\n\nThe square of %d is= %d",no,SQUARE(no));
getch();
}

C program to Calculate square number using argument macro,
C program to Calculate square number using  macro with argument, c program example micro with argument

C Program example List