Add Two Numbers Without Using the Addition Operator


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is scope and lifetime of a variable in c?

0 Answers  


biggest of two no's with out using if condition statement

5 Answers  


char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)

7 Answers   Mascot,


How is a structure member accessed?

0 Answers  


What is the difference between array_name and &array_name?

0 Answers  






int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

0 Answers  


1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.

4 Answers  


If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above

0 Answers  


What is the Purpose of 'extern' keyword in a function declaration?

0 Answers  


what are you see during placement time in the student.

0 Answers   Goldman Sachs, TCS, Tech Solutions,


how can i calculate mean,median,mode by using c program

1 Answers   HCL,


what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string

3 Answers  


Categories