MIPI_BaseC_WebinarFRTK/03_Lecture03/01_announcement_p10.c
2024-11-13 09:22:28 +03:00

14 lines
725 B
C
Raw 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>
int main()
{
unsigned short a; //объявление целочисленной переменной
float f; //объявление вещественной переменной
int su7, prime=7, five=5; //объявление переменных с инициализацией
float pi=3.14; //объявление переменных с инициализацией
char c, c2='A', m=10; //объявление символьных переменных с инициализацией
double big_pi; //объявление вещественной переменной двойной точности
printf("%d",sizeof(a));//забегая вперед
return 0;
}