Computer Science, asked by chilukuritejasrisai, 10 months ago

Hermoine and Ron blessed with a baby. They need to name their child and the priest doesn't know the actual spelling of it. So, help them to get and display the child's name.
Input Format:

The input contains string which denotes the name of the child.

Output Format:

The output contains string which denotes the name of the child.

Note: Name should not contain spaces according to the astrology.

Answers

Answered by fizaasainii2006
0

Answer:

rose weasley and hugo weasley

Explanation:

ALMOST EVERY POTTERHEAD KNOWS THAT..

Answered by wordmark
0

Answer:

#include <iostream>

using namespace std;

// first name space

namespace first_space {

  void func() {

     cout << "Inside first_space" << endl;

  }

}

// second name space

namespace second_space {

  void func() {

     cout << "Inside second_space" << endl;

  }

}

int main () {

  // Calls function from first name space.

  first_space::func();

   

  // Calls function from second name space.

  second_space::func();  

  return 0;

}

Explanation:

how namespace scope the entities including variable and functions −

Similar questions