예제 #1
0
int main()
{
    print_hello_world();
    printf("%d\n", add_integers(1, 2));
    print_hello_world();
    printf("%d\n", add_integers(4, 2));

    return 0;
}
예제 #2
0
파일: user.c 프로젝트: NGenetzky/pic18_c
void print_i2c_inbuff(){
    lcdGoTo(0);
    lcd_init();
    while(!ringbuffer_is_empty()){
        lcdChar(ringbuffer_get());
    }

    print_hello_world();
}
예제 #3
0
int main(int arch, char *argv[])
{
	print_hello_world();

	return (0);
}
예제 #4
0
파일: program_b.c 프로젝트: lordosiris/OS
int main(int argc, char* argv[]) {
	print_hello_world();
	print_something();
	return 0;
}
예제 #5
0
파일: main.c 프로젝트: t-k-/OPMES
int main()
{
	print_hello_world();
	return 0;
}