How to add two numbers without using arithmetic operators?
Answer Posted / kavi
#include<stdio.h>
int a,b,c;
{
printf("enter the two values");
scanf("%d","%d",&a,&b);
c=a||b;
}
| Is This Answer Correct ? | 10 Yes | 80 No |
Post New Answer View All Answers
What are the string functions? List some string functions available in c.
What is the difference between functions getch() and getche()?
What does void main () mean?
How to explain the final year project as a fresher please answer with sample project
What is the use of #define preprocessor in c?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
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
a c code by using memory allocation for add ,multiply of sprase matrixes
What does int main () mean?
Explain built-in function?
What does static variable mean in c?
Why should I prototype a function?
What is pass by reference in functions?
Can we increase size of array in c?
What is the scope of global variable in c?