⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pointers.cpp

📁 Since the field of object oriented programming is probably new to you, you will find that there is a
💻 CPP
字号:
                              // Chapter 3 - Program 1 - POINTERS.CPP
#include <iostream.h>

int main()
{
int   *pt_int;
float *pt_float;
int   pig = 7, dog = 27;
float x = 1.2345, y = 32.14;
void *general;

   pt_int = &pig;
   *pt_int += dog;
   cout << "Pig now has the value of " << *pt_int << "\n";
   general = pt_int;

   pt_float = &x;
   y += 5 * (*pt_float);
   cout << "y now has the value of " << y << "\n";
   general = pt_float;

   const char *name1 = "John";    // Value cannot be changed
   char *const name2 = "John";    // Pointer cannot be changed

   return 0;
}




// Result of execution
//
// Pig now has the value of 34
// y now has the value of 38.3125

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -