PIPS
test01.c File Reference
#include <stdio.h>
+ Include dependency graph for test01.c:

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

BEGIN_KAAPI_traou

END_KAAPI_traou

Definition at line 29 of file test01.c.

30 {
31  int i;
32  int m = 0;
33  int n = 5;
34 
35  /* BEGIN_KAAPI_traou */
36  for (i = 1; i < n; i++)
37  {
38  m = m + n + i;
39  }
40  /* END_KAAPI_traou */
41 
42  printf("Result: %d\n", m);
43  return 0;
44 }
int printf()

References printf().

+ Here is the call graph for this function: