How to add two numbers without using arithmetic operators?
Answer Posted / abhishek shukla
what will be output of this programme?
#include<stdio.h>
#include<conio.h>
void main()
{
int a=5;
clrscr();
a=a+(2,3,3,5,8,6);
printf("%d",a);
getch();
}
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
#include
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What is malloc() function?
What is the basic structure of c?
What is linear search?
What is size of union in c?
State the difference between x3 and x[3].
What's a good way to check for "close enough" floating-point equality?
Can you tell me how to check whether a linked list is circular?
When should a type cast be used?
Calculate 1*2*3*____*n using recursive function??
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What is line in c preprocessor?