C++ Programming Language: Giving Characters to Variables

Hi,
I'm new to c++ and I want to give characters to variable, but not want use the string command like we do for integers.
#include <iostream.h>
#include <conio.h>
void main ()
{
char text[40];
text[40]="i want it like that";
count<<text[40];
getch()
}
So, is there something like int, char, float or any thing in which I can assign some text value like the above code, which doesn't work. Thank you.
