MIPI_AdvancedC_FRTK/Lect3/24.c

11 lines
203 B
C
Raw Normal View History

2024-11-14 08:45:50 +03:00
#include <stdio.h>
#include <assert.h>
int main(){
int x = 7;
x = 9;
assert(x==7); // Условие проверки
// будет напечатано сообщение в stderr
return 0;
}