作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
void fun()
{
// What goes here?
}
void main()
{
int x = 20;
fun();
x = 10;
printf("%d",x); // Should print 20.
}
这是我的测试问题之一。我想知道是否应该使用static int
。你能帮我吗?
最佳答案
我不容忍这种做法,这是一个可怕的想法。但从技术上讲,这在某种程度上符合问题的标准。
void fun()
{
// Essentially this is a function with an empty body
// And I don't care about () in a macro
// Because this is evil, regardless
#define printf(a, b) (printf)(a, b*2)
}
void main() // I know this is not a valid main() signature
{
int x = 20;
fun();
x = 10;
printf("%d", x);
}
关于C 访谈输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38156503/
这是我在面试中被问到的问题。我知道数组只会返回零,因为这是异步的,但为什么会发生这种情况,如何修复它以便结果数组插入适当的数据? 问题:假设 findData 是一个接受查询对象并返回查询结果 pro
我读过 interview与 Bjarne Stroustrup 一起探讨 C++ 及其设计。我对他在那里使用的术语感到困惑,所以我希望能澄清一些这样的时刻。 I documented my desi
这是我最近在 Google 采访中被问及的问题,我提供了一个涉及位移位且为 O(n) 的答案,但她说这不是最快的方法。我不明白,有没有一种方法可以在不必遍历提供的整个位的情况下对位集进行计数? 最佳答
我是一名优秀的程序员,十分优秀!