cstdio

1.1.0 • Public • Published

node-cstdio

Implementation for C language's stdio for node.js

Install

npm i cstdio

Api

printf

printf(format, ...args);

fprintf

fprintf(write_stream, format, ...args);

sprintf

sprintf(format, ...args);

scanf

scanf(format, ...args);

sscanf

scanf(buffer, format, ...args);

doc

See the following packages

Example

Hello, world!

const cstdio = require('cstdio');
 
cstdio.printf('Hello, world!');

Scan and print

const cstdio = require('cstdio');
 
const input = cstdio.scanf("%s");
cstdio.printf("input is %s", input);

Readme

Keywords

Package Sidebar

Install

npm i cstdio

Weekly Downloads

3

Version

1.1.0

License

MIT

Unpacked Size

4.8 kB

Total Files

17

Last publish

Collaborators

  • araxsiyual