Skip to content

Instantly share code, notes, and snippets.

View buzzxI's full-sized avatar

sun yuan buzzxI

View GitHub Profile
@buzzxI
buzzxI / test.c
Created October 1, 2023 14:14
test from ucloud
#include <csapp.h>
int main() {
int num = 10;
int *sp = &num;
fprintf(stdout, "original:%p:new:%p\n", sp, sp + 1);
fprintf(stdout, "this is a \"\n");
return 0;
}
@buzzxI
buzzxI / test.c
Last active October 1, 2023 09:44
#include <stdio.h>
int main()
{
printf("hello, world\n");
fprintf(stdout, "this is a very very long sentence, i just want to view the difference between \"No wrap\" and \"Soft wrap\"\n");
return 0;
}