Di sini kita akan melihat beberapa kod C dan C++ dan cuba meneka hasilnya. Kod ini akan menjana beberapa ralat masa jalan.
1. Ralat bahagi dengan sifar tidak ditentukan. Code Code
rreeeeContoh Kod
#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
Contoh Kod
#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)
Contoh Kod
#include <iostream> using namespace std; int main() { int *ptr = NULL; cout << "The pointer value is: " << *ptr; }
Runtime error for accessing null pointer values
Atas ialah kandungan terperinci Tingkah laku tidak ditentukan dalam C dan C++. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!