write a program to add two numbers of any size.....(remember
any size)
Answer Posted / 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 |
Post New Answer View All Answers
Why is c called c not d or e?
What is uint8 in c?
Write a program to use switch statement.
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What is calloc in c?
What is integer constants?
What are the 4 types of programming language?
What is the general form of function in c?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Why does not c have an exponentiation operator?
What is stack in c?
How can you pass an array to a function by value?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
What is volatile c?
Explain what are compound statements?