MIPI_AdvancedC_FRTK/Lect4/function.c
2024-11-14 08:45:50 +03:00

13 lines
153 B
C

//function.c
#include <stdio.h>
void new_func1(void)
{
printf("\n Inside new_func1()\n");
int i = 0;
for(;i<0xffffffe;i++);
return;
}