MIPI_AdvancedC_FRTK/Lect4/function.c

13 lines
153 B
C
Raw Permalink Normal View History

2024-11-14 08:45:50 +03:00
//function.c
#include <stdio.h>
void new_func1(void)
{
printf("\n Inside new_func1()\n");
int i = 0;
for(;i<0xffffffe;i++);
return;
}