代码搜索结果

找到约 231,314 项符合 C 的代码

stm32f10x_exti.c

/******************** (C) COPYRIGHT 2008 STMicroelectronics ******************** * File Name : stm32f10x_exti.c * Author : MCD Application Team * Version : V2.0.2 *

stm32f10x_spi.c

/******************** (C) COPYRIGHT 2008 STMicroelectronics ******************** * File Name : stm32f10x_spi.c * Author : MCD Application Team * Version : V2.0.2 *

stm32f10x_flash.c

/******************** (C) COPYRIGHT 2008 STMicroelectronics ******************** * File Name : stm32f10x_flash.c * Author : MCD Application Team * Version : V2.0.2

stm32f10x_vector.c

/******************** (C) COPYRIGHT 2008 STMicroelectronics ******************** * File Name : stm32f10x_vector.c * Author : MCD Application Team * Version : V2.0.2

c

#include void main(void) { extern int tip_count; printf("The number of tips is %d\n", tip_count); }

c

#include #include void main(void) { char alphabet[] = "abcdefghijklmnopqrstuvwxyz"; strupr(&alphabet[13]); printf(alphabet); }

c

#include void print_reportcard(int printer_number) { static int student_id = 100; printf("Printing report card for student %d\n", student_id); student_id++; // Other

c

#include void hello_world(void) { printf("Hello, world!\n"); } void main(void) { hello_world(); }

c

#include void local_values(void) { int a = 1, b = 2, c = 3; printf("a contains %d b contains %d c contains %d\n", a, b, c); } void main(void) { printf("a contains %

c

#include void three_hellos(void) { int counter; // Variable for (counter = 1; counter