File: llpaira.c

package info (click to toggle)
python-pyelftools 0.32-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 68,964 kB
  • sloc: python: 15,903; ansic: 298; asm: 86; makefile: 24; cpp: 18; sh: 4
file content (10 lines) | stat: -rw-r--r-- 179 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
void a(int n)
{
    int i;
    for(i=0;i<n;i++)
        printf("%d\n", i*i);
    for(i=0;i<10;i++)
        printf("%d\n", i*i+76543*i);
    printf("%d\n", n);
}