can anyone tell me why this does not compile?
- Code: Select all
#include <stdio.h>
#pragma argsused
#pragma hdrstop
#include<iostream>
#include<conio>
using namespace std;
int main(void)
{
int i = 0;
for(i = 3; i < 7; i++)
{
cout << "%c" << (char)i, i);
}
getch();
return(0);
}
