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 a pointer variable in c language?
Is that possible to add pointers to each other?
How to write c functions that modify head pointer of a linked list?
What does return 1 means in c?
What is structure in c definition?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
Is c is a procedural language?
Write a program to print fibonacci series using recursion?
Write a function that will take in a phone number and output all possible alphabetical combinations
Is it better to use malloc() or calloc()?
Is array name a pointer?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What are the different types of C instructions?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
When the macros gets expanded?