#include <stdio.h> int main() { char buff[80]; printf( "%s\n", buff ); return 0; }
#include <stdio.h> int main() { int a = 123; char buff[80]; // ここにコードを記述 printf( "%s\n", buff ); return 0; }
#include <stdio.h> struct MYDATA { int a; int b; int c; }; int main() { struct MYDATA a,b; a.a = 10; a.b = 20; a.c = 30; // ここにコードを記述 printf( "%d\n", b.a ); printf( "%d\n", b.b ); printf( "%d\n", b.c ); return 0; }
#include <stdio.h> #include <string.h> #include <memory.h> int main() { char buff[80] = "ABCDEFG"; char buff2[80]; int i; int ptr = 0; for( i = 0; i < strlen( buff ); i++ ) { // ここにコードを記述 } *(buff2 + ptr) = 0x00; printf( "%s\n", buff2 ); return 0; }
#include <stdio.h> #include <string.h> int main() { char buff[80] = "123456"; char buff2[80]; _strrev( buff ); int i; int ptr = 0; for( i = 0; i < strlen( buff ); i++ ) { // ここにコードを記述 } *(buff2 + ptr) = 0x00; _strrev( buff2 ); printf( "%s\n", buff2 ); return 0; }
#include <windows.h> #include <stdio.h> int main() { char buff[MAX_PATH] = "C:\\" "Documents and Settings\\" "lightbox\\" "My Documents\\" "EXCEL\\" "販売管理.xls"; LPTSTR lpDrive; LPTSTR lpPath1; LPTSTR lpPath2; LPTSTR lpPath3; LPTSTR lpPath4; LPTSTR lpFile; LPTSTR lpExt; // ここにコードを記述 printf( "%s\n", lpDrive ); // C: printf( "%s\n", lpPath1 ); printf( "%s\n", lpPath2 ); printf( "%s\n", lpPath3 ); printf( "%s\n", lpPath4 ); printf( "%s\n", lpFile ); // 販売管理 printf( "%s\n", lpExt ); // xls return 0; }
#include <stdio.h> char buff[80]; int main() { while( 1 ) { // ここにコードを記述 } return 0; }