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

What is the data segment that is followed by c?

617


When was c language developed?

706


What is the use of clrscr?

602


a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if

710


What are the different properties of variable number of arguments?

669






What is the sizeof () a pointer?

555


What is a pointer in c plus plus?

700


c program for searching a student details among 10 student details

1662


a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion

2338


State the difference between x3 and x[3].

657


What is a scope resolution operator in c?

756


Are enumerations really portable?

600


Explain do array subscripts always start with zero?

765


How can a process change an environment variable in its caller?

658


How can I get the current date or time of day in a c program?

654