Project: Personal Profile

Create a small program with the following:

  • Your name initial (as char)

  • Your age (as int)

  • Your height (as double)

  • Print a sentence using all three.

Project: Personal Profile

Create a small program with the following:

  • Your name initial (as char)

  • Your age (as int)

  • Your height (as double)

  • Print a sentence using all three.

C++
#include <iostream>
using namespace std;
int main() {
// Your code goes here
return 0;
}