brintos

brintos / llvm-project-archived public Read only

0
0
Text · 225 B · 45d3bc7 Raw
12 lines · c
1#include <stdio.h>2#include <assert.h>3 4const char *hello_world = "Hello, assertion!";5 6int main(int argc, const char* argv[])7{8    int *null_ptr = 0;9    printf("%s\n", hello_world);10    assert(null_ptr); // Assert here.11}12