Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 9 additions & 10 deletions buggy.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,30 @@
3. create a new branch on git
4. git push changed buggy.c
5. create pull request with your name and changes you made

*/

struct dog
{
int age;
char name = [10];
char name [10];
};


void main()
{
struct (dog) thing1:
struct dog thing1;
struct dog thing2;

thing1.age = [5];
thing1.age = 5;
thing2.age = 13;

puts{"What is your dogs name? "};
gets(thing1.names);
puts("What is your dogs name? ");
gets(thing1.name);

strcpy(thing2.name, "Buster");

printf("Name: %i\n",thing1.name );
printf("Age: %i\n",thing1.age):
printf("Thing2 Name: %s\n,thing2.name);
printf("Thing2 Age %i\n',thing2.age);
printf("Name: %i\n",thing1.name);
printf("Age: %i\n",thing1.age);
printf("Thing2 Name: %s\n",thing2.name);
printf("Thing2 Age: %i\n",thing2.age);
}
36 changes: 36 additions & 0 deletions lab12-1.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#include <stdio.h>
#include <string.h>

/* Assignment:
1. fix bugs in the code
2. add comments
3. create a new branch on git
4. git push changed buggy.c
5. create pull request with your name and changes you made
*/

struct dog
{
int age;
char name [10];
};


void main()
{
struct dog thing1;
struct dog thing2;

thing1.age = 5;
thing2.age = 13;

puts("What is your dogs name? ");
gets(thing1.name);

strcpy(thing2.name, "Buster");

printf("Name: %i\n",thing1.name);
printf("Age: %i\n",thing1.age);
printf("Thing2 Name: %s\n",thing2.name);
printf("Thing2 Age: %i\n",thing2.age);
}