视频中不是没有#include<iostream>,怎么运行的了
指针的命名运用中,这个程序不是少了#include
吗?怎么可能运行的了
#include <stdlib.h>
using namespace std;
int main(void)
{
int a=3;
int *p=&a;
int *&q=p;
*q=5;
cout<<a<<endl;
system("pause");
return 0;
}
指针的命名运用中,这个程序不是少了#include
吗?怎么可能运行的了
#include <stdlib.h>
using namespace std;
int main(void)
{
int a=3;
int *p=&a;
int *&q=p;
*q=5;
cout<<a<<endl;
system("pause");
return 0;
}
2016-12-11
举报