コード例 #1
0
ファイル: main.c プロジェクト: henrybear327/581-Term-Project
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;
}