write a addition of two no. program with out using
printf,scanf,puts .
Answer Posted / vaibhav
#define PRINT printf("%d",a+b)
void main()
{
int a=8,b=7;
PRINT;
getch();
}
| Is This Answer Correct ? | 30 Yes | 14 No |
Post New Answer View All Answers
What is static identifier?
what is a function method?give example?
What are the rules for identifiers in c?
Why is c not oop?
Explain the array representation of a binary tree in C.
Why do we use namespace feature?
What are qualifiers and modifiers c?
Explain the difference between malloc() and calloc() in c?
Do you know what are the properties of union in c?
What is the advantage of using #define to declare a constant?
How can a program be made to print the name of a source file where an error occurs?
Is it fine to write void main () or main () in c?
Is this program statement valid? INT = 10.50;
What is structure data type in c?
What are the 5 elements of structure?