/* buger.c */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(void)
{
char buffer[128] = {0};
char *envp = NULL;
printf("buffer address is: %p\n", &buffer);
envp = getenv("KIRIKA");
if (envp)
strcpy(buffer, envp);
return 0;
}/* buger.c */
#include <stdio.h>
#include