What will be output of this function?
1. int main() 2. { 3. register int i = 1; 4. int *ptr = &i; 5. cout << *ptr; 6. return 0; 7. }
What will be output of this program?
1. #include2. using namespace std; 3. int main() 4. { 5. int i = 3; 6. int l = i / -2; 7. int k = i % -2; 8. cout << l << k; 9. return 0; 10. }
What will be the output of this program?
1. #include2. using namespace std; 3. int main() 4. { 5. int a = 8; 6. cout << "ANDing integer 'a' with 'true' :"" << a && true; 7. return 0; 8. }
0946, 786427373824, 'x' and 0X2f are _____, _____, ____ and _____ literals respectively
Which of these expressions will isolate the rightmost set bit?