ランキング参加中プログラミング [TOP] 次>> Visual Studioで新規プロジェクトを作り、次のcppファイルを作成して下さい。 【PointerTest1.cpp】 #include <iostream> #include <stdlib.h> int main() { int a, *pa; float x, *px; a = 9; x = 2.5; pa = &a; px = &x; std::cout << "変数a のアドレスは、" << pa << "です。" << std::endl; st</stdlib.h></iostream>…