Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#include <stdio.h>
#include <string.h>
#include <unistd.h>
int BUFFER=200;
int copy(char* input){
char buffer[BUFFER];
strcpy(buffer, input);
}
int main(int argc, char* argv[]){
/* Main Function*/
char buf[400];
printf("Smash The Stack\n");
//Get the data
int r;
r = read(0, buf, 400); //Save Version
int out = copy(buf);
printf("Lose :(\n");
return 0;
}