how to add numbers without using arithmetic operators.
Answer Posted / valli
#include<stdio.h>
main()
{
int a=5,b=6,s;
int *p=a;
s=&p[b];
printf("%d",s);
}
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
Explain is it better to bitshift a value than to multiply by 2?
When was c language developed?
What does the error 'Null Pointer Assignment' mean and what causes this error?
write a program to generate address labels using structures?
Write a program to generate random numbers in c?
What does & mean in scanf?
What is bubble sort in c?
Can you please explain the difference between exit() and _exit() function?
C program to find all possible outcomes of a dice?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
How to find a missed value, if you want to store 100 values in a 99 sized array?
what will be maximum number of comparisons when number of elements are given?
Explain what does a function declared as pascal do differently?
How can you find the exact size of a data type in c?
What are the application of c?