Tag: programming languages
Questions Related to programming languages
27 | 8 = ?
Consider the following code: int x, y, z; y = 1; z = 5; x = 0 - (++y) + z++; After execution of this, what will be the values of x, y and z?
What will be the result of the expression a % b when a and b are of type int and their values are a = -17 and b = -6?
Which of the following is not a hexadecimal number? (A) 999 (B) (hex)23 (C) 0x556 (D) 0x1F2
If not assigned a value, a variable of type char has the following default value:
By which keyword Boolean data type is expressed in C++?