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


Please Help Members By Posting Answers For Below Questions

Which one would you prefer - a macro or a function?

613


write a programming in c to find the sum of all elements in an array through function.

1716


What is the use of static variable in c?

601


Can stdout be forced to print somewhere other than the screen?

631


What is static volatile in c?

584






When should we use pointers in a c program?

643


Why we write conio h in c?

577


How do shell structures work?

581


How can I pad a string to a known length?

622


What are the standard predefined macros?

647


What is a void pointer in c?

615


The difference between printf and fprintf is ?

724


What is header file definition?

581


What are the ways to a null pointer can use in c programming language?

600


In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping

988