write a program to add two numbers of any size.....(remember
any size)



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

Post New Answer

More C Interview Questions

Ca some one please help me with aC code to allow user enter numbers from 1 to 20 without repeating and prnt the sum of those numbers thnx

4 Answers  


Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.

0 Answers   TCS,


What are the features of the c language?

0 Answers  


in which language c language is written?

2 Answers  


Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff

0 Answers  






What is meant by errors and debugging?

0 Answers  


how to compare two strings without using strcmp() function??

1 Answers  


What is period operator in c?

3 Answers   Wipro,


What is 2c dna?

0 Answers  


what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }

3 Answers  


Tell me the use of bit field in c language?

0 Answers  


How many types of sorting are there in c?

0 Answers  


Categories