程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> c語言-誰能幫我看看這個啊,謝謝

c語言-誰能幫我看看這個啊,謝謝

編輯:編程解疑
誰能幫我看看這個啊,謝謝
  1. What is the output of this C code?

    #include
    int main()
    {
    reverse(1);
    }
    void reverse(int i)
    {
    if (i > 5)
    exit(0);
    printf("%d\n", i);
    return reverse(i++);
    }
    a) 1 2 3 4 5
    b) 1 2 3 4
    c) Compile time error
    d) Stack overflow
    View Answer

Answer:d
. What is the value of i and j in the below code?

#include <stdio.h>
int x = 0;
int main()
{
    int i = (f() + g()) | g(); //bitwise or
    int j = g() | (f() + g()); //bitwise or
}
int f()
{
    if (x == 0)
        return x + 1;
    else
        return x - 1;
}
int g()
{
    return x++;
}

a) i value is 1 and j value is 1
b) i value is 0 and j value is 0
c) i value is 1 and j value is undefined
d) i and j value are undefined
View Answer

Answer:c
還有這個

最佳回答:


圖片說明
圖片說明

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved