how to add numbers without using arithmetic operators.
Answer Posted / srikanth
int main()
{
int a=3,b=5;
printf("
%d
",printf("%*c%*c",a,' ' ,b,' '));
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
Process by which one bit pattern in to another by bit wise operation is?
What is hash table in c?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
What is the difference between far and near ?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Can we access the array using a pointer in c language?
What is dangling pointer in c?
Explain how are portions of a program disabled in demo versions?
What is a lookup table in c?
What are the types of c language?
What is advantage of pointer in c?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
Write a program to know whether the input number is an armstrong number.
What are the 5 types of inheritance in c ++?