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 |
What is FIFO?
is assignment operator is arithmatic or not
Explain the difference between #include "..." And #include <...> In c?
What is the difference between variable declaration and variable definition in c?
Between macros and functions,which is better to use and why?
Why c is procedure oriented?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
What is a char in c?
Explain the use of keyword 'register' with respect to variables.
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }
How can you return multiple values from a function?