代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/175592/6341533
c sms.c
/*************************************************************************/
/* */
/* Copyright Mentor Graphics Cor
www.eeworm.com/read/175592/6341543
c pis.c
/*************************************************************************/
/* */
/* Copyright Mentor Graphics Cor
www.eeworm.com/read/175592/6341584
c pic.c
/*************************************************************************/
/* */
/* Copyright Mentor Graphics Cor
www.eeworm.com/read/175592/6341612
c qus.c
/*************************************************************************/
/* */
/* Copyright Mentor Graphics Cor
www.eeworm.com/read/272710/6348328
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/360546/6352178
f90 btree.f90
!
! 二元树排序范例
!
module typedef
implicit none
type :: data
integer :: n ! 存放的数据
integer :: repeat ! 数据重覆的次数
type(data), pointer :: left ! 左枝
type(data), pointer :: r
www.eeworm.com/read/382951/6352824
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/494733/6374568
txt 3.txt
【程序68】
题目:有n个整数,使其前面各数顺序向后移m个位置,最后m个数变成最前面的m个数
1.程序分析:
2.程序源代码:
main()
{
int number[20],n,m,i;
printf("the total numbers is:");
scanf("%d",&n);
printf("back m:");
scanf("%d",&m);
for(i=0;i
www.eeworm.com/read/494745/6374629
h cmpnt2.h
//
// Cmpnt2.h - Component 2
//
#include "Iface.h"
#include "CUnknown.h" // Base class for IUnknown
///////////////////////////////////////////////////////////
//
// Component B
//
class CB
www.eeworm.com/read/494745/6374632
h cmpnt1.h
//
// Cmpnt1.h - Component 1
//
#include "Iface.h"
#include "CUnknown.h" // Base class for IUnknown
///////////////////////////////////////////////////////////
//
// Component A
//
class CA