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 |
write a program to display numbers from 1 to 10 and 10 to 1?
pgm in c to reverse string by word using array(god is love becomes love is god) (no additional array can used,space is only delimiter between words )
how to find anagram without using string functions using only loops in c programming
Explain what is the general form of a c program?
Why c is a mother language?
write a function which accept two numbers from main() and interchange them using pointers?
In how much time you will write this c program? Prime nos from 1 to 1000
Is there anything like an ifdef for typedefs?
SRUCTURE PROGRAMMING
What is hungarian notation? Is it worthwhile?
Is it possible to run using programming C for Java Application?
Explain null pointer.