write a program to add two numbers of any size.....(remember
any size)



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

Post New Answer

More C Interview Questions

What are the types of unary operators?

0 Answers  


Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me

2 Answers  


What is malloc calloc and realloc in c?

0 Answers  


What are local variables c?

0 Answers  


Why c is called free form language?

0 Answers  






Why the use of alloca() is discouraged?

2 Answers   Oracle,


how to find a 5th bit is set in c program

4 Answers   IBM,


what is c++ programming?

3 Answers   TCS,


what is meant by flushll() in c programming?

1 Answers  


What is conio h in c?

0 Answers  


what is difference between C and C++

4 Answers  


how to find the given number is prime or not?

6 Answers   IMS, ING,


Categories