programming-examples/c++/Others/Cout and cin examples.cpp

36 lines
494 B
C++
Raw Normal View History

2019-11-15 12:59:38 +01:00
Cout and cin examples
//read a character using cin
#include <iostream.h>
#include <stdlib.h>
int main()
{
char mychar[100];
int i = 0;
//while the character is not a new line
while((mychar[i] = cin.get()) != '\n')
i++;
mychar[i] = NULL;
//display characters
cout<<mychar<<endl;
return 0;
}
//write a character using cout
#include <iostream.h>
#include <stdlib.h>
int main()
{
char *url = "WWW";
while(*url)
cout.put (*url++);
cout<<endl;
return 0;
}