代码搜索:printf

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

代码结果 10,000
www.eeworm.com/read/124989/6034791

c cromutil.c

/* * 3c905cutil.c - perform various control ops on the 3C905C bios rom * which we assume to be an AT49BV512 * */ #ifndef __i386__ # error "This program can't compile or run on non-i
www.eeworm.com/read/124989/6034873

c undi.c

/************************************************************************** Etherboot - BOOTP/TFTP Bootstrap Program UNDI NIC driver for Etherboot This file Copyright (C) 2003 Michael Brown
www.eeworm.com/read/124989/6035019

c 3c515.c

/* * 3c515.c -- 3COM 3C515 Fast Etherlink ISA 10/100BASE-TX driver for etherboot * Copyright (C) 2002 Timothy Legge * * This program is free software; you can redistribute
www.eeworm.com/read/124347/6052458

c test.c

#include #include "test.h" #include #include #include int verbose; static int count; int inacc; int _DEFUN(main,(ac, av), int ac _AND char **
www.eeworm.com/read/124347/6052737

h check.h

#define CHECK(a) { \ if (!(a)) \ { \ printf ("Failed " #a " in at line %d\n", __FILE__, __LINE__); \ abort(); \ } \ }
www.eeworm.com/read/122074/6066417

c tcpecho.c

/* * Copyright (c) 2001, Swedish Institute of Computer Science. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provi
www.eeworm.com/read/121297/6068898

c stat.c

#include #include int main(void) { double data[5] = {17.2, 18.1, 16.5, 18.3, 12.6}; double mean, variance, largest, smallest; mean = gsl_stats_mean(data, 1
www.eeworm.com/read/120028/6080380

c tolower.c

#include int main() { char c; c = tolower('C'); printf("%c\n",c); return 0; }
www.eeworm.com/read/119864/6082022

c howdy.c

#include int howdy(const char *s) { return printf("howdy: %s\n", s); }
www.eeworm.com/read/117181/6110948

c pxdb.c

#include #ifdef PROTOTYPES int callee (int x) #else int callee( x ) int x; #endif { int y = x * x; return (y - 2); } int main() { int i; for (i = 1; i < 10; i++) {