Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • C

Idiom #120 Read integer from stdin

Read an integer value from the standard input into the variable n

#include <stdio.h>
int n[15];
fgets(n, 15, stdin);

int n[15]; Int with 15 bytes to use.

Fgets gets user input, and sets n to what it gets
#include <stdio.h>
int n;
scanf("%d", &n);
(def n (Integer/parseInt (read-line)))

read-line reads the current value of *in* which defaults to System.in

New implementation...
< >
programming-idioms.org