>백엔드 개발 >C++ >C 및 C++의 정의되지 않은 동작

C 및 C++의 정의되지 않은 동작

WBOY
WBOY앞으로
2023-08-28 13:09:05930검색

C 및 C++의 정의되지 않은 동작

여기서 C 및 C++ 코드를 보고 결과를 추측해 보겠습니다. 이러한 코드는 런타임 오류를 생성합니다.

1. 0으로 나누기 오류가 정의되지 않았습니다.

예제 코드

#include <iostream>
using namespace std;
int main() {
   int x = 10, y = 0;
   int z = x / y;
   cout << "Done" << endl;
}

Output

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";
}

Output

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;
}

Output

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;
   }
}

Output

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;
}

Output

x + 1: -2147483648
circulate to the minimum number of signed int

위 내용은 C 및 C++의 정의되지 않은 동작의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제