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 extern c means?
What is the difference between pure virtual function and virtual function?
What are global variables?
Is fortran faster than c?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
What is a char in c?
What is the purpose of realloc()?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Define the scope of static variables.
What does do in c?
Are the variables argc and argv are local to main?
Explain what is the difference between a free-standing and a hosted environment?
What is malloc return c?
explain what are pointers?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array