13 lines
153 B
C
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;
|
||
|
}
|