代码搜索:Hello

找到约 10,000 项符合「Hello」的源代码

代码结果 10,000
www.eeworm.com/read/192311/8387897

asm hello.asm

; 编译链接方法 ; (ld 的‘-s’选项意为“strip all”) ; ; [root@XXX XXX]# nasm -f elf hello.asm -o hello.o ; [root@XXX XXX]# ld -s hello.o -o hello ; [root@XXX XXX]# ./hello ; Hello, world! ; [root@XXX XXX]#
www.eeworm.com/read/192259/8391128

c hello.c

#include "ourhdr.h" int main(void) { printf("hello world from process ID %d\n", getpid()); exit(0); }
www.eeworm.com/read/192259/8391416

ps hello.ps

%! /Times-Roman findfont 15 scalefont % point size of 15 setfont % establish current font 300 350 moveto % x=300, y=350 (position on page) (hello, world) show % output the string to curr
www.eeworm.com/read/291386/8422204

h hello.h

/*************************************************************************** hello.h - description ------------------- begin
www.eeworm.com/read/291386/8422236

c hello.c

/*************************************************************************** hello.c - description ------------------- begin
www.eeworm.com/read/191471/8429274

java hello.java

package net.frog_parrot.hello; import javax.microedition.midlet.*; import javax.microedition.lcdui.*; public class Hello extends MIDlet implements CommandListener { HelloCanvas myCanvas;
www.eeworm.com/read/190618/8440293

c hello.c

/************************************************************* * hello.c * Ah well, I just had to have this! */ main() { printf("Hello World!\n"); }
www.eeworm.com/read/190267/8445996

c hello.c

#include #include int main (int argc, char **argv) { printf ("Hello world!\n"); printf ("Hello world again!\n"); return 0; }
www.eeworm.com/read/390697/8452158

cpp hello.cpp

// hello.cpp : Defines the class behaviors for the application. // #include "stdafx.h" #include "hello.h" #include "MainFrm.h" #include "helloDoc.h" #include "helloView.h" #ifdef _DEBUG
www.eeworm.com/read/390659/8453653

c hello.c

main() { printf("Hello, world\n"); }