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 |
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance
What is double pointer?
What is this infamous null pointer, anyway?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
write a program to find the frequency of a number
can we store values and addresses in the same array? explain
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Which function in C can be used to append a string to another string?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
what is event driven software and what is procedural driven software?