MIPI_BaseC_WebinarFRTK/09_Lecture09/00__p6.c
2024-11-13 09:22:28 +03:00

24 lines
643 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <stdio.h>
#define N 11
int main(int argc, char **argv)
{
{
char s[10];// Строка из 9 значимых символов
}
{
char s[N];// Строка из N-1 значимых символов, в строке всегда есть символ \0
}
{
char st[] = "hello";
// st[0]='h' st[1]='e' st[2]=l st[3]=l st[4]='o' st[5]='\0'
printf("%llu\n", sizeof(st)); // 6
}
{
char st[10] = "hello";
// st[0]='h' st[1]='e' st[2]=l st[3]=l st[4]='o' st[5]='\0'
printf("%llu\n", sizeof(st)); //
}
return 0;
}