Skip to content

Commit

Permalink
Add credits
Browse files Browse the repository at this point in the history
  • Loading branch information
trmaphi committed Mar 31, 2019
1 parent aea2852 commit 429d72e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pointer-c/arithmetic/compare-pointer.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Credits to https://www.tutorialspoint.com/cprogramming/c_pointer_arithmetic.htm

#include <stdio.h>

const int MAX = 3;
Expand Down
2 changes: 2 additions & 0 deletions pointer-c/arithmetic/decrement-pointer.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Credits to https://www.tutorialspoint.com/cprogramming/c_pointer_arithmetic.htm

#include <stdio.h>

const int MAX = 3;
Expand Down
2 changes: 2 additions & 0 deletions pointer-c/arithmetic/increment-pointer.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Credits to https://www.tutorialspoint.com/cprogramming/c_pointer_arithmetic.htm

#include <stdio.h>

const int MAX = 3;
Expand Down
4 changes: 3 additions & 1 deletion pointer-c/array-pointers/assign-array-pointers.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// Credits to https://www.tutorialspoint.com/cprogramming/c_array_of_pointers.htm

#include <stdio.h>

const int MAX = 3;

int main () {

int var[] = {10, 100, 200};
Expand Down
2 changes: 2 additions & 0 deletions pointer-c/array-pointers/declare-array-pointer.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Credits to https://www.tutorialspoint.com/cprogramming/c_array_of_pointers.htm

#include <stdio.h>

const int MAX = 4;
Expand Down

0 comments on commit 429d72e

Please sign in to comment.