Ticket #929: mySmallInput.cpp

File mySmallInput.cpp, 477 bytes (added by kaoutsis, 18 years ago)

my little silly input program

Line 
1// mySmallInput.cpp
2//
3#include <stdio.h>
4#include <unistd.h>
5#include <iostream>
6using namespace std;
7
8const char *TextYellow = "\33[33m";
9const char *TextRed = "\33[31m";
10const char *TextNormal = "\33[0m";
11
12int main()
13{
14 char inputBuffer[64];
15
16 cout << TextRed << "--> Hello, What's your first name:" << TextNormal << '\n';
17 cout << TextYellow << "--> ";
18 cin >> inputBuffer;
19 cout << TextRed << "--> Hello, " << inputBuffer << "." << TextNormal << endl;
20
21 return 0;
22}