Add Two Numbers Without Using the Addition Operator
No Answer is Posted For this Question
Be the First to Post Answer
What is %lu in c?
write the program for maximum of the following numbers? 122,198,290,71,143,325,98
wat is the difference between array and pointer?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
How can I read a directory in a c program?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
What is the use of bitwise operator?
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
Which of these functions is safer to use : fgets(), gets()? Why?
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
Explain argument and its types.
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??