MIPI_BaseC_WebinarFRTK/18_Seminar05/09_printf_p16.c
2024-11-13 09:22:28 +03:00

15 lines
384 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 a=5;
int main(){
int a=10;
if (1==1) {
int a=20; /*Локальная переменная видна только внутри if. Не стоит называть переменные также как и во внешней области видимости */
printf("a = %d\n",a);
}
printf("a = %d\n",a);
return 0;
}