2 questions that I have always wondered about:
1. On my compiler, I have to use
#include "stdafx.h"
#include <iostream>
#include <Windows.h>
using namespace std;
and not
#include "stdafx.h"
#include <iostream.h>
#include <Windows.h>
Please explain the difference between these 2. (c++)
2. Why use pointers when the array can be declared as global?