#include <iostream>
#include <windows.h>
#include <stdio.h>
using namespace std;
int main()
{
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
cout<<"Testing..";
fflush(hOut);
cout<<"did it work?"<<endl;
system("PAUSE");
return 0;
}
\C++\Untitled3.cpp invalid conversion from `void*' to `FILE*'
#include <iostream>
#include <windows.h>
#include <stdio.h>
using namespace std;
int main()
{
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
cout<<"Testing..";
fflush(hOut);
cout<<"did it work?"<<endl;
system("PAUSE");
return 0;
}
\C++\Untitled3.cpp invalid conversion from `void*' to `FILE*'
#include <stdio.h>
void main(void) { std::cout<<"imma get cleared?";
fflush(std::stdout); //typing this ffrom my phone, may be wrong
std::cout<<"cleared"; system("pause");
Copyright © 2026, NextGenUpdate.
All Rights Reserved.