Skip to content
Open
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: 11 additions & 8 deletions example.c
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
#include <stdio.h>

int main()
{
// Add your name to be printed below
printf("Who has completed the tutorial?\n");
printf("Natalia\n");

return 0;
}
int main() {

// Add your name to be printed below
printf("Who has completed the tutorial?\n");
printf("Natalia\n");
printf("Matt\n");
printf("Don't mind me. Just checking an access token.\n");

return 0;

}