What will be printed during compilation and execution of the following code?
#include <iostream>

void func(int a) {
   std::cout << a*1;
}

void abcbcdcde(int a) {
   std::cout << a*2;
}

void functionThatPrintsSquaredValue(int a) {
   std::cout << a*a;
}

int main(int argc, char * argv[]) {

f\
u\
n\
c\
(11);

abc\
bcd\
cde\
(1\
2);

function\
That\
Prints\
Squared\
Value\
(13);

}

Follow CodeGalaxy

Mobile Beta

Get it on Google Play
Send Feedback
Cosmo
Sign Up Now
or Subscribe for future quizzes