Back To C++ Loops Index
//program to display numbers 0 to 50 with a gap of 5 between the numbers using for statement #include
#include
void main() { int i; clrscr(); for(i=0;i<=50;i+=5) { cout<