代码搜索:Hello

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

代码结果 10,000
www.eeworm.com/read/358784/10179688

asm hello.asm

TITLE Hello World Program (Hello.asm) ; This program displays "Hello, world!" .model small .stack 100h .386 .data message BYTE "Hello, world!",0dh,0ah .code main PROC mov
www.eeworm.com/read/358751/10180184

pas hello.pas

{ ID:maigoak1 PROG:hello } program hello; var f:text; begin assign(f,'hello.out'); rewrite(f); writeln(f,'Hello world.'); close(f); end.
www.eeworm.com/read/358751/10180185

out hello.out

Hello world.
www.eeworm.com/read/358574/10184630

m hello.m

function hello %调用格式: % hello % %函数功能: % 显示字符串Hello World!
www.eeworm.com/read/358574/10184631

c hello.c

#include "mex.h" void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray*prhs[]) { mexPrintf("Hello World!\n"); }
www.eeworm.com/read/358574/10184651

dll hello.dll

www.eeworm.com/read/358525/10186052

cpp hello.cpp

#include #include int main(int argc, char *argv[]) { QApplication app(argc, argv); QLabel *label = new QLabel("Hello Qt!", 0); app.setMainWidget(label); la
www.eeworm.com/read/358525/10186053

pro hello.pro

SOURCES = hello.cpp
www.eeworm.com/read/358507/10186117

cpp hello.cpp

#include #include #define INFINITY 32767 #define MAX_VEX 20 //最大顶点个数 bool *visited; //访问标志数组 //图的邻接矩阵存储结构 typedef struct{ char *vexs; //顶点向量 int arcs[MAX_VEX
www.eeworm.com/read/358412/10189540

c hello.c

/* HELLO.C -- Hello, world */ #include main() { printf("Hello, world\n"); }