程序员面试宝典_程序设计基本概念
eg1. 题目: 下列C++代码的输出结果是什么
#include <iostream> using namespace std; int i = 1; int main(){ int i = i; return 0; }
答案:
../demo1.cpp:13: 警告:此函数中的‘i’在使用前未初始化
eg2. 题目:下列程序的输出结果是什么
#include <iostream> using namespace std; int main(){ int x = 2, y, z; x *= (y = z = 5); cout << x << endl; z = 3; x == (y = z); cout << x << endl; x = (y == z); cout << x << endl; x = (y & z); cout << x << endl; x = (y && z); cout << x << endl; y = 4; x = (y | z); cout << x << endl; x = (y || z); cout << x << endl; return 0; }
答案:
10,10,1,3,1,7,1
|
作者:沙漏哟 出处:计算机的未来在于连接 本文版权归作者和博客园共有,欢迎转载,请留下原文链接 微信随缘扩列,聊创业聊产品,偶尔搞搞技术 |