Code:
#include<iostream>
using namespace std;

int main(void)
{
	cout << "Hello?" << endl; 
	cout << "Hello\?" << endl;

	return(0);
}
When i run the above program both lines are identical.
I use MSVC++ if that makes any difference!