create two variables: one containing the uppercase character 'G' and the other with uppercase letter 'O'. You can name the variable anything you want as long as it's a valid name that accepted in C.
#include <iostream>
using namespace std;
int main()
{
char chG='G', chO='O';
cout << chG << chO;
return 0;
}
Comments
Leave a comment