Sorry, but maybe I am not getting you.. I need to input an empty line, (or actually a "\n")..
I tried:
char a;
scanf("%c",&a);
char a[3];
scanf("%s",as);
char a[3];
getline(a); //these both getlines were giving errors, don't know why..
getline(a,'\n');
So, I am still not able to understand how to get a single '\n' from the input stream..