Have a look at a couple of source examples from cplusplus.com
Input streaming
// example on extraction
#include <iostream>
using namespace std;
int main () {
int n;
char str[10];
cout << "Enter a number: ";
cin >> n;
cout << "You have entered: " << n << endl;
cout << "Enter a hexadecimal number: ";
cin >> hex >> n; // manipulator
cout << "Its decimal equivalent is: " << n << endl;
cout << "Enter a word: ";
cin.width (10); // limit width
cin >> str;
cout << "The first 9 chars of your word are: " << str << endl;
return 0;
}
Case conversion
/* toupper example */
#include <stdio.h>
#include <ctype.h>
int main ()
{
int i=0;
char str[]="Test String.\n";
char c;
while (str[i])
{
c=str[i];
putchar (toupper(c));
i++;
}
return 0;
}
Those should get you started.