-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
软件:week4 理论作业(2015-10-19 实验课结束后提交) #5
Labels
Comments
例题我就看不懂了 |
是实验课上写吗 |
实验课后交 |
收到 |
答案:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Attention:
作业写在纸上,写上姓名学号,在实验课结束后提交。
对于每一道题目,写上答案,并且写上解题思路,为什么选这个?(根据什么?)
英文答题
😄 😄 😄
答题例子:
// example
a) 31
b) 63
c) 12
d) 14
View Answer
Answer:b
Explanation:ISO C99 compiler may consider only first 63 characters for internal.
// end example
正式题目:
a) int __a3;
b) int __3a;
c) int __A3;
d) None of the mentioned
a) int _a3;
b) int a_3;
c) int 3_a;
d) int _3a
a) It is not standardized
b) To avoid conflicts since assemblers and loaders use such names
c) To avoid conflicts since library routines use such names
d) To avoid conflicts with environment variables of an operating system
a) LowerCase letters
b) UpperCase letters
c) CamelCase letters
d) None
a) int number;
b) float rate;
c) int variable_count;
d) int $main;
a) They can contain alphanumeric characters as well as special characters
b) It is not an error to declare a variable to be one of the keywords(like goto, static)
c) Variable names cannot start with a digit
d) Variable can be of any length
(A) 4.3
(B) 4.8
(C) 3.3
(D) 3.8
(A)CPU
(B) A compiler
(C) An assembler
(D) The operating system
(A) _1234
(B) 1_2
(C) int_2
(D) 2_int
(A) 12
(B) 9
(C) 7
(D) none of the above
(A)i=i+1;
(B)i+=1;
(C)i++;
(D)i=1;
(A) true
(B) INT
(C) CHINA
(D) end
(A) 2.5
(B) 3
(C) 4
(D) none of the above
The text was updated successfully, but these errors were encountered: