Political Science, asked by ajinkyakulkarni, 4 months ago

What would be the output of below code?
13126311622
1312631162
#include <iostream>
using namespace std;
int main()
int num = 5:
num = printf("Apple Fruit");
printf(" %d", num);
return 0
}
Type your answer here:​

Answers

Answered by chavansanjivani
0

Answer:

I don't know the answer .

Explanation:

please mark me as brainliest

Answered by Bilwanandu
0

Answer:

Apple Fruit11

Explanation:

First printf, 'num' prints Apple Fruit

The Second printf prints the number of characters in 'num' including space or null character. Since Apple Fruit contains 11 characters, the output of the program is Apple Fruit11.

Similar questions