여기서 C 및 C++ 코드를 보고 결과를 추측해 보겠습니다. 이러한 코드는 런타임 오류를 생성합니다.
1. 0으로 나누기 오류가 정의되지 않았습니다.
#include <iostream> using namespace std; int main() { int x = 10, y = 0; int z = x / y; cout << "Done" << endl; }
Runtime error for divide by zero operation
2. 초기화되지 않은 변수를 사용하려고 합니다.
#include <iostream> using namespace std; int main() { bool x; if(x == true) cout << "true value"; else cout << "false value"; }
false value (This may differ in different compilers)
3. 널 포인터 값에 액세스하려고 합니다.
#include <iostream> using namespace std; int main() { int *ptr = NULL; cout << "The pointer value is: " << *ptr; }
Runtime error for accessing null pointer values
5. 부호 있는 정수의 한계를 초과했습니다.
#include <iostream> using namespace std; int main() { int array[10]; for(int i = 0; i<=10; i++) { cout << array[i] << endl; } }
Runtime error for accessing item out of bound. Some compiler may return some arbitrary value, not return any error
6. 문자열 리터럴의 일부 문자를 변경해 보세요.
#include <iostream> using namespace std; int main() { int x = INT_MAX; cout << "x + 1: " << x + 1; }
x + 1: -2147483648 circulate to the minimum number of signed int
위 내용은 C 및 C++의 정의되지 않은 동작의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!