代码搜索:Hello
找到约 10,000 项符合「Hello」的源代码
代码结果 10,000
www.eeworm.com/read/177090/9469908
o hello.o
www.eeworm.com/read/177090/9469910
c hello.c
/*
****************************************Copyright (c)**************************************************
** Guangzhou Zhiyuan Electronic Co.,LTD.
**
www.eeworm.com/read/177066/9470253
asm hello.asm
extrn func_putint :proc
extrn func_putchar :proc
extrn func_getch :proc
extrn func_getche :proc
_data segment
str_0 db "Hello world!", 0
_data ends
_text segment
assume cs:_text ,ds:
www.eeworm.com/read/177066/9470257
exe hello.exe
www.eeworm.com/read/176730/9486222
c hello.c
#include
static void button_clicked(GtkWidget *button, gpointer data)
{
char *string = data;
g_print(string);
}
int main (int argc, char *argv[])
{
GtkWidget *app;
GtkWidge
www.eeworm.com/read/176730/9486504
c hello.c
/*
* Hello world module.
*/
#include
#if defined(CONFIG_SMP)
#define __SMP__
#endif
#if defined(CONFIG_MODVERSIONS)
#define MODVERSIONS
#include
#endif
#inc
www.eeworm.com/read/176730/9486572
c hello.c
#include
int main()
{
printf("Hello World\n");
exit(0);
}