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
3 changes: 3 additions & 0 deletions comments.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
@Fawzan : I'm carazy. :D
<<<<<<< HEAD
=======
@fawzan: Look's like I have so many late submsiions :p

>>>>>>> a363212b3ee1fa89e9c781eb1fd0be558e71103a

2 changes: 2 additions & 0 deletions comments.txt~
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@Fawzan : I'm carazy. :D
@Rosen : Seriously ? Are you crazy because of these small bugs, btw don't worry I have fixed all of them :)
3 changes: 2 additions & 1 deletion contributers.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Mohammed Fawzan, The Architect
Mohammed Fawzan, The Architect
Rosen Silva, The Bug Fixer :)
5 changes: 3 additions & 2 deletions corrupt.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ int main(){


int i;
char string[42] = "Brace your self, CO328 project is coming!!";
char string[43] = "Brace your self, CO328 project is coming!!";
string[42] = '\0';
int j;

printf("%s",string);
return 0;
}
4 changes: 2 additions & 2 deletions theta.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
char * giveMeSomeMemory ( int size ){
char * str ;
if (size > 0)
str =( char *) malloc ( size );
if (size == 1)
str =( char *) malloc ( sizeof(char)*size );
else
return NULL ;
return ( str );
}
Expand Down