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

Can variables be declared anywhere in c?

0 Answers  


write a program to compare 2 numbers without using logical operators?

5 Answers   IBM,


Is boolean a datatype in c?

0 Answers  


What is pragma c?

0 Answers  


write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34

0 Answers  






Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +

1 Answers  


Can you subtract pointers from each other? Why would you?

0 Answers  


process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,

0 Answers   InterGraph,


What are the parts of c program?

0 Answers  


Explain what is a static function?

0 Answers  


What is new line escape sequence?

0 Answers  


What is c programing language?

0 Answers  


Categories