(ehab) writes:
> How can I get man pages for GCC commands like get or putc or getc ...etc?
1. These are not GCC-specific. They are part of the standard C
programming language's library.
2. These are not "commands". C does not have commands. They are
functions.
3. "man <name>"
--
int main(void){char p[]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuv wxyz.\
\n",*q="kl BIcNBFr.NKEzjwCIxNJC";int i=sizeof p/2;char *strchr();int putchar(\
);while(*q){i+=strchr(p,*q++)-p;if(i>=(int)sizeof p)i-=sizeof p-1;putchar(p[i]\
);}return 0;}