You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
175 B
C++

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;
}