代码搜索:Hello
找到约 10,000 项符合「Hello」的源代码
代码结果 10,000
www.eeworm.com/read/432289/8613488
cpp hello.cpp
//: C02:Hello.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Saying Hello with C++
#include /
www.eeworm.com/read/288615/8618276
c hello.c
/*
* $Id: hello.c,v 1.5 2004/10/26 03:32:21 corbet Exp $
*/
#include
#include
www.eeworm.com/read/388111/8635034
c hello.c
#include
int main()
{
initscr();
int i;
clear();
for ( i = 0; i < LINES; i++ ) {
move(i, i + i);
if ( i % 2 == 1 )
standout();
else
standend();
addstr("Hello, world");
www.eeworm.com/read/387835/8651468
c hello.c
/* HELLO.C -- Hello, world */
#include
main()
{
printf("Hello, world\n");
}
www.eeworm.com/read/287965/8656369
lst hello.lst
C51 COMPILER V6.12 HELLO 10/22/2007 16:50:26 PAGE 1
C51 COMPILER V6.12, COMPILATION OF MODULE HELLO
OBJECT MODULE PLACED IN .
www.eeworm.com/read/287965/8656378
obj hello.obj
www.eeworm.com/read/287965/8656400
plg hello.plg
构造目标 'Target 1'
正在编绎 hello.c...
连接中...
"hello" - 0 错误 (s), 0 警告 (s).
www.eeworm.com/read/287965/8656427
opt hello.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.a*; *.src)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt)
pExt (*.plm)
DaveTm { 0,0,0,0,0,0,0,0 }
Target (Tar
www.eeworm.com/read/431013/8713393
c hello.c
#include
main()
{
char buffer[80];
printf("\nhello out there");
printf("\nEnter your name:");
gets(buffer);
printf("\n\nyou entered>>%s