Q. What is the output of the following C++ code?

Code:
#include <iostream>
using namespace std;
void carree(int *x)
{
  *x = (*x + 1) * (*x);
}
int main()
{
  int n = 10;
  carree(&n);
  cout << n;
  return 0;
}
  • (A) 100
  • (B) 110
  • (C) 101
  • (D) None of these
πŸ’¬ Discuss
βœ… Correct Answer: (B) 110

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
292
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Ram Sharma
Publisher
πŸ“ˆ
90%
Success Rate