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
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
What is the use of a ‘ ’ character?
What is a struct c#?
Write a code of a general series where the next element is the sum of last k terms.
What is the translation phases used in c language?
Can static variables be declared in a header file?
What is main function in c?
What is #include stdio h and #include conio h?
Explain what is the purpose of "extern" keyword in a function declaration?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
write a c program to find the sum of five entered numbers using an array named number
Explain how do you convert strings to numbers in c?
Why should I use standard library functions instead of writing my own?