我在訪問單個結構時遇到問題。如何使用指針輸出每個結構元素?如何使用C++中的指針訪問結構中的每個元素
#include <iostream>
using namespace std;
struct student{
int rollno;
float marks;
char name[45];
};
int main(){
student s1[2]={{1,50.23,"abc"},{2,65.54,"def"}};
for(int j=0;j<2;j++){
cout<<"Output Rollno, Marks and Name Using Pointer"
}
return 0;
}
謝謝...一個普遍的問題,如何打印代碼在stackoverflow評論?? – sandbox 2012-01-19 01:13:59
將它包裹在「'」(數字左邊的字母上方的鍵) – asaelr 2012-01-19 01:15:44