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 |
Explain what a Binary Search Tree is.
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
Is main an identifier in c?
What is the diffences between Windows XP and Windows Visa
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
What is data structure in c programming?
Write a program in C to reverse a number by recursive function?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
How can you call a function, given its name as a string?
In a switch statement, what will happen if a break statement is omitted?
What is the difference between near, far and huge pointers?
What does volatile do?