11 lines
203 B
C
11 lines
203 B
C
|
#include <stdio.h>
|
||
|
#include <assert.h>
|
||
|
|
||
|
int main(){
|
||
|
int x = 7;
|
||
|
x = 9;
|
||
|
assert(x==7); // Условие проверки
|
||
|
// будет напечатано сообщение в stderr
|
||
|
return 0;
|
||
|
}
|