运行 ❯
获得您
自己的
网站
×
更改方向
更改主题,深色/浅色
转到 Spaces
#include <stdio.h> #include <string.h> struct myStructure { int myNum; char myLetter; char myString[30]; // String }; int main() { struct myStructure s1; // Assign a value to the string using the strcpy function strcpy(s1.myString, "Some text"); // Print the value printf("My string: %s", s1.myString); return 0; }
我的字符串:一些文本