Standard C library functions for environment variables are getenv() to retrieve and putenv() to set/modify environment variables. Option A incorrectly pairs setenv() (which exists but putenv() is the more common POSIX standard). Option C uses non-existent function names. Option B correctly pairs getenv() and putenv().