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 the difference between break and continue?
What are the Advantages of using macro
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Explain how do you override a defined macro?
what are the difference between ANSI C and Let Us c and Turbo C
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
0 Answers Sikkim Manipal University,
Explain what is the stack?
What is the meaning of ?
What are the characteristics of arrays in c?
What is the difference between malloc() and calloc() function in c language?