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

Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?

3 Answers  


Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.

2 Answers  


Can you please explain the scope of static variables?

0 Answers  


What is an operator?

0 Answers  


How can I find the day of the week given the date?

0 Answers  


What are the 32 keywords in c?

0 Answers  


What are the different types of C instructions?

0 Answers   InterGraph,


how can be easily placed in TCS.

0 Answers   TCS,


what is data structure?

5 Answers   CBSE,


What is macro?

5 Answers   IBM,


Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….

1 Answers  


What do you understand by normalization of pointers?

0 Answers  


Categories