Click here to Skip to main content
15,793,085 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: Failure to remove folders after using CFileDialog DoModal Pin
David Crow16-Jun-15 5:21
David Crow16-Jun-15 5:21 
QuestionExisting VR Frame Renderers Pin
Trevor Johansen15-Jun-15 16:25
Trevor Johansen15-Jun-15 16:25 
QuestionLoad CSV file to a database in Windows 64bit Pin
aks.14-Jun-15 23:36
aks.14-Jun-15 23:36 
AnswerRe: Load CSV file to a database in Windows 64bit Pin
Jochen Arndt15-Jun-15 0:45
professionalJochen Arndt15-Jun-15 0:45 
QuestionNew to C++ and Programming, Absolutely new Pin
Member 1176562614-Jun-15 19:36
Member 1176562614-Jun-15 19:36 
AnswerRe: New to C++ and Programming, Absolutely new Pin
Amarnath S14-Jun-15 20:00
professionalAmarnath S14-Jun-15 20:00 
GeneralRe: New to C++ and Programming, Absolutely new Pin
Member 1176562614-Jun-15 20:26
Member 1176562614-Jun-15 20:26 
GeneralRe: New to C++ and Programming, Absolutely new Pin
Richard MacCutchan14-Jun-15 22:42
mveRichard MacCutchan14-Jun-15 22:42 
Looking at the actual source code in your question you have:
C++
#include
using namespace std;
int main()
...

But the #include statement is incomplete. You must use that statement to include header files which define the various external classes/methods/functions etc, that you wish to use in your program. So, to use the cout command, you must include the header that defines the basic I/O stream classes thus:
C++
#include <iostream>

See https://msdn.microsoft.com/en-us/library/zh80x809(v=vs.100).aspx[^] for more details.
QuestionAfxGetApp anomaly Pin
ForNow10-Jun-15 10:18
ForNow10-Jun-15 10:18 
QuestionOdd property sheet behavior Pin
David Crow10-Jun-15 5:41
David Crow10-Jun-15 5:41 
AnswerRe: Odd property sheet behavior Pin
Chris Losinger10-Jun-15 6:26
professionalChris Losinger10-Jun-15 6:26 
QuestionAdd lib by pragma Pin
_Flaviu10-Jun-15 1:32
_Flaviu10-Jun-15 1:32 
AnswerRe: Add lib by pragma Pin
David Crow10-Jun-15 3:46
David Crow10-Jun-15 3:46 
GeneralRe: Add lib by pragma Pin
_Flaviu11-Jun-15 0:25
_Flaviu11-Jun-15 0:25 
Questionbad pointer error when I read a class object with CString member Pin
manoharbalu8-Jun-15 21:13
manoharbalu8-Jun-15 21:13 
Answer[Repost] Pin
Sascha Lefèvre8-Jun-15 21:36
professionalSascha Lefèvre8-Jun-15 21:36 
SuggestionRe: bad pointer error when I read a class object with CString member Pin
David Crow9-Jun-15 6:37
David Crow9-Jun-15 6:37 
AnswerRe: bad pointer error when I read a class object with CString member Pin
Stefan_Lang12-Jun-15 1:13
Stefan_Lang12-Jun-15 1:13 
QuestionWindows 8.1 TouchScreen panning does not scroll window for MFC Scrollview or Win32 apps Pin
bob169727-Jun-15 8:10
bob169727-Jun-15 8:10 
AnswerRe: Windows 8.1 TouchScreen panning does not scroll window for MFC Scrollview or Win32 apps Pin
bob1697220-Jun-15 4:31
bob1697220-Jun-15 4:31 
Questionlinked list in C Pin
a random user7-Jun-15 5:28
a random user7-Jun-15 5:28 
AnswerRe: linked list in C Pin
Chris Losinger9-Jun-15 5:55
professionalChris Losinger9-Jun-15 5:55 
Questionneed help with linked structs at C language Pin
a random user6-Jun-15 0:57
a random user6-Jun-15 0:57 
AnswerRe: need help with linked structs at C language Pin
Richard MacCutchan6-Jun-15 1:29
mveRichard MacCutchan6-Jun-15 1:29 
GeneralRe: need help with linked structs at C language Pin
a random user6-Jun-15 1:56
a random user6-Jun-15 1:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.