Write a C program to multiply tho numbers without using
arithmetic operator (+, -, *, /).
Answer / taz
int a=5,b=2,c,i,j;
for(i=1;i<=a;i++)
for(j=1;j<=b;j++)
c++;
printf("%d",c);
| Is This Answer Correct ? | 5 Yes | 1 No |
Describe static function with its usage?
Define the scope of static variables.
What is extern storage class in c?
main() { int i=400,j=300; printf("%d..%d"); }
Explain what is the stack?
What are the disadvantages of c language?
How can I convert a number to a string?
What is the full form of getch?
Is calloc better than malloc?
How can I find out the size of a file, prior to reading it in?
Define circular linked list.
what is the code for getting the output as * ** ***