Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Print Bash Version.c
/* * Prints bash version info. */ #define BASH_LOC "/bin/bash" #include <stdio.h> #include <unistd.h> int main(void) { int ret; char *args[] = { "bash", "--version", NULL }; ret = execv( BASH_LOC, args ); if( ret ){ perror("execv"); return ret; } }
run
|
edit
|
history
|
help
1
Data Types
Project 4 v.5
tarea1
C_141120_factorial02
Building squares using smallest amount of matches
Busqueda binaria version recursiva
E
Ordered Openmp
If Statement/ Decrements V2
day 3 integer manipulation