14 lines
152 B
C
14 lines
152 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
|
|
|
|
main(int argc, char * argv[]) {
|
|
char * res;
|
|
|
|
res = getpass("Inserire valore: \n");
|
|
printf("%s",res);
|
|
|
|
}
|
|
|