Add Two Numbers Without Using the Addition Operator
No Answer is Posted For this Question
Be the First to Post Answer
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
what is the difference between getch() and getchar()?
Which is more efficient, a switch statement or an if else chain?
What is wrong with this code?
how to get the starting address of file stored in harddisk through 'C'program.
What is table lookup in c?
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
Can you explain the four storage classes in C?
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }
Explain what is the difference between far and near ?
What are loops in c?