cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Need help creating a table.
Need help creating a table.
Jul 26, 2011 at 10:42pm UTC
Brad1
(19)
I need help making this code below print 10 ascii characters per line. Any help is appreciated.
#include <iostream>
using namespace std;
int main()
{
for (int i = 33; i < 127; i++)
{
std::cout << i << ": " << (char)i << std::endl;
}
return 0;
}
Jul 26, 2011 at 10:56pm UTC
Disch
(13742)
every repost is repost repost
posted and answered already here:
http://cplusplus.com/forum/general/47563/
Jul 26, 2011 at 10:59pm UTC
Intrexa
(291)
every repost is repost repost
posted and answered already here:
http://cplusplus.com/forum/general/47563/
Topic archived. No new replies allowed.