Question from the C++ test

What is the output of the following C++ code? #include <iostream> using namespace std; int main() { int a = 10, b = 20, c = 30; cout << a + b + c; return 0; }

Medium

If the expression sizeof (char *) returns 4, what does the expression sizeof (char ***) return? (1 correct answer)

Author: Abha AgrawaStatus: PublishedQuestion passed 390 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!