
CorC++
iteye_7092
这个作者很懒,什么都没留下…
展开
-
C++普及篇之HelloWorld
// my first program in C++#include <iostream>using namespace std;int main (){ cout << "Hello World!"; return 0;}2007-03-29 09:31:03 · 100 阅读 · 0 评论 -
Fundamental data types
Name Description Size* Range* ...2007-03-29 21:36:56 · 97 阅读 · 0 评论 -
Some Error collection when std for C++
#include<iostream.h> #include<string.h> using namespace std; int main(){ int a(10); cout<<a; } will be run ok but the code as fallows will be ... #include<iostream.h>...2007-03-31 23:46:49 · 100 阅读 · 0 评论 -
Operator Level
LevelOperatorDescriptionGrouping1::scopeLeft-to-right2() [] . -> ++ -- dynamic_cast static_cast reinterpret_cast const_cast typeidpostfixLeft-to-right3++ -- ~ ! sizeof new deleteunary (prefix)Right...2007-04-02 20:52:54 · 137 阅读 · 0 评论