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
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
what are # pragma staments?
What is function prototype in c with example?
What are logical errors and how does it differ from syntax errors?
What is this infamous null pointer, anyway?
What is the code in while loop that returns the output of given code?
what is recursion in C
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
Compare and contrast compilers from interpreters.
Ow can I insert or delete a line (or record) in the middle of a file?
What are derived data types in c?
What are the data types present in c?
Was 2000 a leap year?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What does node * mean?