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 meant by high-order and low-order bytes?
When we use void main and int main?
What do you mean by keywords in c?
Are c and c++ the same?
How do you determine the length of a string value that was stored in a variable?
What is volatile keyword in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What are different types of operators?
How many levels deep can include files be nested?
Write a C program in Fibonacci series.
how should functions be apportioned among source files?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Tell me about low level programming languages.
What is a double c?
What is a MAC Address?