© М.Л. Цымблер (mzym@susu.ru), Е.В. Аксенова (evaksen@mail.ru)
#define MAX (10) void f(int n, int m) { int a[10]; int b[n]; int c[MAX]; int d[n*2]; int e[n * m]; // ... return; }
#include <stdio.h> #include <string.h> void main() { char str[] = "ab\0cd\nxyz"; printf("%s\n", str); printf("%d\n", sizeof(str)); printf("%d\n", strlen(str)); return; }
char str1[6]; char str2[6] = "Hello";Укажите синтаксически верный(ые) оператор(ы) из ниже приведенных:
#include <stdio.h> #include <string.h> void main() { char str3[5] = {'W','o','r','l','d'}; char str2[3]; char str1[5] = {'H','e','l','l','o'}; strcpy(str2, str1); printf("%s, %s! %s!\n", str1, str3, str2); return; }