public class LibraryDeclarations
extends java.lang.Object
int putchar(int c) outputs a single character, specified by its numerical code, c;
also returns c, except in case of error, when it returns -1int print(int n) outputs the integer n in signed decimal form and then returns 0int println(int n) does the same as print and then outputs a newline characterlibrary.c file
included with this compiler.| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
get()
Provides the library declarations.
|