File: ansi.c

package info (click to toggle)
gccintro 1.0-4
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm, bullseye, buster
  • size: 3,024 kB
  • sloc: ansic: 1,004; sh: 500; cpp: 172; makefile: 14
file content (9 lines) | stat: -rw-r--r-- 125 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int
main (void)
{
  const char asm[] = "6502";
  printf ("the string asm is '%s'\n", asm);
  return 0;
}