代码搜索:pointers

找到约 4,056 项符合「pointers」的源代码

代码结果 4,056
www.eeworm.com/read/253260/12235321

cpp sayings2.cpp

// sayings2.cpp -- using pointers to objects // compile with string1.cpp #include #include // (or stdlib.h) for rand(), srand() #include // (or time.h) for
www.eeworm.com/read/253260/12235631

cpp fun_ptr.cpp

// fun_ptr.cpp -- pointers to functions #include double betsy(int); double pam(int); // second argument is pointer to a type double function that // takes a type int argument void e
www.eeworm.com/read/337096/12391595

cpp sayings2.cpp

// sayings2.cpp -- using pointers to objects // compile with string1.cpp #include #include // (or stdlib.h) for rand(), srand() #include // (or time.h) for
www.eeworm.com/read/337096/12391961

cpp fun_ptr.cpp

// fun_ptr.cpp -- pointers to functions #include double betsy(int); double pam(int); // second argument is pointer to a type double function that // takes a type int argument void e
www.eeworm.com/read/233206/14163269

cpp dog.cpp

/* dog.cpp -- A program demonstrating function pointers. */ #include #include #include const char *Commands[] = { "come", "done", "fet
www.eeworm.com/read/127382/14356913

c sysfile.c

#include "calld.h" static FILE *fpsys = NULL; static int syslineno; /* for error messages */ static char sysline[MAXLINE]; /* can't be automatic; sys_next() returns pointers into here */
www.eeworm.com/read/127382/14356916

c dialfile.c

#include "calld.h" static FILE *fpdial = NULL; static int diallineno; /* for error messages */ static char dialline[MAXLINE]; /* can't be automatic; dial_next() returns pointers into here */
www.eeworm.com/read/127382/14356922

c devfile.c

#include "calld.h" static FILE *fpdev = NULL; static int devlineno; /* for error messages */ static char devline[MAXLINE]; /* can't be automatic; dev_next() returns pointers into here */
www.eeworm.com/read/224612/14580312

cpp ex4_05.cpp

//EX4_05.CPP // Exercising pointers #include using namespace std; int main() { long* pnumber = NULL; // Pointer declaration & initialization long number1 = 55, numb
www.eeworm.com/read/224612/14580832

cpp ex6_01.cpp

// EX6_01.CPP // Exercising pointers to functions #include using namespace std; long sum(long a, long b); // Function prototype long product(long a, long b); // Fun