What are reserved words with a programming language?
No Answer is Posted For this Question
Be the First to Post Answer
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What is c++ used for today?
What will the preprocessor do for a program?
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
i want to know aptitude questions,technical questions
12345 1234 123 12 1
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
Do you know what are bitwise shift operators in c programming?
What is equivalent to ++i+++j?
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.