代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/139404/13157767
png pointer02.png
www.eeworm.com/read/139382/13159297
cpp pointer_example.cpp
#include
using std::cout;
using std::endl;
int main()
{
int x = 5;
// `p' points to `x'
int* p = &x;
cout
www.eeworm.com/read/315311/13546325
html moving-pointer.html
Xlib Programming Manual: Moving the Pointer
12.4 Moving the Pointer
Although movement of the pointer normally should be left to the
www.eeworm.com/read/315311/13546332
html pointer-grabbing.html
Xlib Programming Manual: Pointer Grabbing
12.1 Pointer Grabbing
Xlib provides functions that you can use to control input from the p
www.eeworm.com/read/315311/13546760
html keyboard-pointer.html
Xlib Programming Manual: Keyboard and Pointer Events
10.5.2 Keyboard and Pointer Events
www.eeworm.com/read/315311/13546761
html pointer-button.html
Xlib Programming Manual: Pointer Button Events
10.5.1 Pointer Button Events
The following describes the event processing that occurs
www.eeworm.com/read/315169/13549587
c pointer6.c
#include
void hello_num(int num)
{
int i;
for(i = 0; i < num; i++)
printf("hello world, num is %d\n",i);
}
void hello(void)
{
printf("hello world, no num\n");
}
void ma
www.eeworm.com/read/315169/13549588
c pointer3.c
#include
/*交换函数,其形参为指针*/
void swap(int *p1, int *p2)
{
int temp;
/*交换指针单元所指的值*/
temp = *p1;
*p1 = *p2;
*p2 = temp;
}
int main()
{
int a,b;
int *p1, *p2;
a = 10; b =
www.eeworm.com/read/315169/13549589
c pointer7.c
#include
void main(int argc, char *argv[])
{
int i = 0;
while(argc > 1)
{
/*指针数组的下标引用*/
argv[++i];
/*输出指针数组的第i个元素所指向的内容*/
printf("%s\n", argv[i]);
/*计数器减一*/
--argc;