os/prog/main.c

11 lines
148 B
C
Raw Normal View History

2019-05-01 09:39:23 -05:00
#include "../libc/string.h"
2019-05-01 11:55:54 -05:00
int main() {
2019-03-17 18:04:50 -05:00
int x=17;
2019-05-01 09:39:23 -05:00
char str[2];
str[0]='h';
str[1]='\0';
char* vga=0xC00B8000;
return x+strlen(str);
2019-03-17 18:04:50 -05:00
}