Loading...
Select Version
&pagelevel(4)&pagelevel
Definition | #include <stdlib.h> char *getpgmname(void);
|
Return val. | Pointer to the program name. |
Example | #include <stdio.h> #include <stdlib.h> int main(void) { printf("Example showing the use of getpgmname():"); printf("Program name = %s\n", getpgmname()); return 0; } |