运行 ❯
获取
您自己的
网站
×
更改方向
更改主题,深色/浅色
前往空间
#include <stdio.h> // Create a structure struct myStructure { int myNum; char myLetter; char myString[30]; }; int main() { // Create a structure variable and assign values to it struct myStructure s1 = {13, 'B', "Some text"}; // Print values printf("%d %c %s", s1.myNum, s1.myLetter, s1.myString); return 0; }
13 B 一些文本