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 are the Advantages of using macro
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Can you tell me how to check whether a linked list is circular?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Explain what is the difference between null and nul?
What is structure padding and packing in c?
What is the easiest sorting method to use?
Explain Function Pointer?
Explain how can a program be made to print the line number where an error occurs?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Is c language still used?
When should the register modifier be used? Does it really help?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?