write a program to add two numbers of any size.....(remember
any size)
Answer / guest
main()
{
int a,b,c;
malloc(a),malloc(b);
scanf("%d %d",&a,&b);
c=a+b;
printf("%d %d",&a,&b);
}
| Is This Answer Correct ? | 2 Yes | 3 No |
What is difference between main and void main?
Explain what is the difference between null and nul?
How can I implement sets or arrays of bits?
What is the difference between calloc() and realloc()?
What is a rvalue?
Is file a keyword in c?
What are the two types of structure?
What is a structure and why it is used?
how i m write c program 1.check prime number 2.prime number series
Why is sizeof () an operator and not a function?
program for swapping two strings by using pointers in c language
Can we write a program without main() function?