Interview Questions Answers.ORG
Interviewer And Interviewee Guide
Interviews
Quizzes
Home
Quizzes
Interviews Exception Handling Interviews:C C++ ErrorsDatabase ErrorsDotNet ErrorsERRORSMySQL ErrorsOracle ErrorsScripts ErrorsSQL Server Errors
Copyright © 2018. All Rights Reserved
C C++ Errors Interview Question:
When i use cout or cin call & then either << or >> .....it shows
declaration syntax error...what should i do?
cout<<"anything";
int a;
cin>>a;
return 0;?
Submitted by: AdministratorIf you are using Turbo C complier need to add #include<iostream.h> header file.
and If you are using Visual Studio then you need to add
#include<iostream>
using std namespace;
the above two statements.
Submitted by: Administrator
and If you are using Visual Studio then you need to add
#include<iostream>
using std namespace;
the above two statements.
Submitted by: Administrator
Copyright 2007-2025 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.
https://InterviewQuestionsAnswers.ORG.