C/C++
stevens.lst
Associated article: C Programming
Tags: C/C++
_C PROGRAMMING COLUMN_
by Al Stevens
[LISTING ONE]
/* ---------- Display NetWare USERID ---------- */
#include <stdio.h>
#include <nit.h>
char *GetUserid(void);
void main()
{
printf("nUserid: %s", GetUserid());
}
/*
* Get the current logged on userid
*/
...


