Thread
:
[SOLVED] C program i need to print 1 to 100 without using loop(ex:while do while,
View Single Post
#
2
(
permalink
)
06-10-2007, 04:50 PM
chpwnzd
Posts: n/a
std::cout << "1,2,3,....100"<<std::endl;
or
system("iota 1 100");
__________________
chpwnzd