Skip to content

Instantly share code, notes, and snippets.

@kelvintaywl
Created July 6, 2023 06:21
Show Gist options
  • Save kelvintaywl/da829618f91a71060af2eccfb3bc3037 to your computer and use it in GitHub Desktop.
Save kelvintaywl/da829618f91a71060af2eccfb3bc3037 to your computer and use it in GitHub Desktop.
test core dumps
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Process is aborting\n");
abort();
printf("Control not reaching here\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment