how to add numbers without using arithmetic operators.
Answer Posted / satish gaikwad
oh sorry I have considered as addition operator
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What are different types of pointers?
Can we change the value of constant variable in c?
What does sizeof int return?
Explain bitwise shift operators?
What are the types of type qualifiers in c?
Where local variables are stored in c?
please give me some tips for the placement in the TCS.
What does the && operator do in a program code?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
How can you increase the size of a statically allocated array?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
Can we access the array using a pointer in c language?
How can I send mail from within a c program?
Write a program to reverse a given number in c language?