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

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