📄 900210_07.c
字号:
// g++ 1.36.1 bug 900210_07// g++ allows values of pointer-to-signed types to be assigned to variables// of pointer-to-unsigned types, and vise versa.// Cfront 2.0 passes this test.// keyowrds: pointer types, implicit type conversions// Special Options: -ansi -pedantic-errorssigned int *sip;unsigned int *uip;void function (){ sip = uip; // ERROR - uip = sip; // ERROR - }int main () { return 0; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -