Can someone help me using fflush in C++
Here is a sample code in C
#include <stdio.h>
using namespace std;
int a,b,i;
char result[20];
int main() {
scanf("%d %d\n", &a, &b);
for (i=1; i<=10; i++) {
printf("5\n");
fflush(stdout);
gets(result);
if (strcmp(result, "congratulation") == 0) break;
}
return 0;
}
This is program for getting interactive input.
I usually use cin and cout so is it possible not using printf and scanf?
hasilis not declared anywhere). It's not C either (Chas no namespaces, and no iostream header).] – Mat Sep 11 '11 at 19:16cinandcoutso is it possible not usingprintfandscanf? Yes it's possible, usecinandcout(as usual) and notprintfandscanf! – Christian Rau Sep 11 '11 at 19:21<< flushthere is hidden in the<< endl, which actually does nothing more than<< '\n' << flush. – Christian Rau Sep 12 '11 at 17:34