Add Two Numbers Without Using the Addition Operator
write a program to display the frequency of each element in a given array in c language
Is there a way to compare two structure variables?
What does printf does?
what is the use of call back function in c?tell me with example
long int size a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
18 Answers Acropolis, HCL, Intel, TCS,
Explain the ternary tree?
How can I read a directory in a c program?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
what is the size of an integer variable?
how to add numbers without using arithmetic operators.
Which one would you prefer - a macro or a function?
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }