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
What is union in c?
Explain how can I read and write comma-delimited text?
What is typedef struct in c?
What is the use of printf() and scanf() functions?
What is a MAC Address?
How can I send mail from within a c program?
What is the difference between int main and void main in c?
Is c easy to learn?
What is the difference between #include and #include 'file' ?
Explain what is the benefit of using enum to declare a constant?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What is meant by realloc()?
Do you know the difference between malloc() and calloc() function?
How many levels of pointers have?
Which one would you prefer - a macro or a function?