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
How can I find out the size of a file, prior to reading it in?
What are c identifiers?
Explain c preprocessor?
how to make a scientific calculater ?
What is LINKED LIST? How can you access the last element in a linked list?
What is ctrl c called?
Is c dynamically typed?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Why are algorithms important in c program?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
Where does the name "C" come from, anyway?
Why is void main used?
In C language what is a 'dangling pointer'?
What is sizeof array in c?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.