Search Results

Search: Posts Made By: bParks
9,978
Posted By vgersh99
echo 'a' | nawk -f parks.awk echo 'a' | nawk...
echo 'a' | nawk -f parks.awk
echo 'a' | nawk -v shift=4 -f parks.awk parks.awk:

function initascii2dec()
{
for(i=0;i<=255;i++) {
ch=sprintf("%c", i)
ascii2dec[ch] = i
}
}...
9,978
Posted By Scott
#include <stdio.h> int main(int argc, char...
#include <stdio.h>

int main(int argc, char **argv ) {
if ( *argv[1] == 'z' ) *argv[1]=64;
printf( "%c\n", *argv[1]+1 );
return 0;
}



$ cc -o mytest mypoorc.c

$ ./mytest a
b
...
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 04:44 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy