Computer Tips [https://com.puter.tips/]
Learn. Create. Share.
Tuesday, October 20, 2015
Name must be a namespace name error in Visual C++
Following error was observed in Microsoft Visual C++ 2010 edition while using std namespace.
Error: IntelliSense: name must be a namespace name
Problem code:
using namespace
std
;
Solution:
#include
<iostream>
using namespace
std;
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.