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 |
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
Can you please explain the scope of static variables?
What is an operator?
How can I find the day of the week given the date?
What are the 32 keywords in c?
What are the different types of C instructions?
how can be easily placed in TCS.
what is data structure?
What is macro?
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
What do you understand by normalization of pointers?