Hello yes I am a beginner at writing C++ and have been using Visual Studio C++ 2008, my problem is that when I enter this very simple code
#include <stdio.h>
int main( void )
{
int counter = 1;
do {
printf( "%d " , &counter );
} while ( ++counter <= 10 );
return 0;
}
this code is supposed to simply count...