Sign In
Ayman Shoukry's WebLog
Microsoft Visual C++ Team & the Future of C++
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
No tags have been created or used yet.
Archive
Archives
December 2006
(2)
October 2006
(1)
September 2006
(1)
August 2006
(2)
July 2006
(2)
June 2006
(1)
May 2006
(4)
April 2006
(8)
December 2005
(1)
October 2005
(3)
September 2005
(1)
August 2005
(2)
July 2005
(1)
April, 2006
MSDN Blogs
>
Ayman Shoukry's WebLog
>
April, 2006
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Ayman Shoukry's WebLog
Breaking Change: I/O stream changes
Posted
over 6 years ago
by
Ayman Shoukry
12
Comments
Original Code: #include <iostream.h> int main(int argc, char *argv[]) { cout<<"Hello World\n"; } Error VC2005 issues: sample.cpp(1) : fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory Code...
Ayman Shoukry's WebLog
VC2005 Breaking Change: No More Implicit 'int'
Posted
over 6 years ago
by
Ayman Shoukry
0
Comments
Original Code: int main() { const x = 0; } Error VC2005 issues: sample.cpp(3) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int Code after applying the fix: int main() { const int x = 0; } For...
Ayman Shoukry's WebLog
VC++ Express Edition is Free
Posted
over 6 years ago
by
Ayman Shoukry
2
Comments
Effective from April 19th, all Visual Studio 2005 Express Editions are permanently Free. For more information, take a look at http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=357238&SiteID=1 Also, if you have any concerns or issues you...
Ayman Shoukry's WebLog
Breaking change: for scoping change – default is now: /Zc:forScope
Posted
over 6 years ago
by
Ayman Shoukry
0
Comments
Original Code: //sample.cpp int main() { for(int i = 0; i < 10; ++i); for(i = 0; i < 10; ++i) ; } Error VC2005 issues: sample.cpp(3) : error C2065: 'i' : undeclared identifier Code after applying the fix: //sample.cpp int main() ...
Ayman Shoukry's WebLog
Migrating to VC++ 2005
Posted
over 6 years ago
by
Ayman Shoukry
2
Comments
I have been hanging a lot lately on the VC++ MSDN forums and I have noticed that lots of the issues raised there are due to migration difficulty to VC2005. Hence, I am thinking of starting a series of small short posts here explaining some of the common...
Ayman Shoukry's WebLog
The first of the VC++ Channel9 series is out
Posted
over 6 years ago
by
Ayman Shoukry
0
Comments
You can now check Brandon Bray's video on channel9. There are more videos to come for multiple features of VC++ 2005. Thanks, Ayman Shoukry
Ayman Shoukry's WebLog
VC++ Optimization Session at the MDC 2006
Posted
over 6 years ago
by
Ayman Shoukry
1
Comments
Last February I gave a session at the MDC 2006 . I have had some feedback for making the slide deck available. I have attached it to this post. Thanks for your interest and sorry for the delay! Thanks, Ayman Shoukry
Ayman Shoukry's WebLog
Visual C++ Libraries DLL Deployment
Posted
over 6 years ago
by
Ayman Shoukry
52
Comments
There have been lots of questions and concerns about deploying VC++ 2005 applications and what are the possible ways of deploying the VC++ Libraries. Thanks to Sridhar Madhugiri on the VC++ Libraries team, here is a quick dump that can help in the...
Page 1 of 1 (8 items)