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 |
How will you allocate memory to a double pointer ?
how could explain about job profile
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
How to reverse a string using a recursive function, with swapping?
What is 2 d array in c?
Difference between MAC vs. IP Addressing
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
Why is struct padding needed?
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
int x=sizeof(!5.856); What will value of variable x?
When we use void main and int main?