Skip to content

Commit e4b3b5f

Browse files
committed
changes
1 parent 6381a89 commit e4b3b5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snippets/c/mathematical-functions/swap-numbers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ void swap(int* num1,int* num2){
1515

1616
// Usage:
1717
int a = 3,b = 4;
18-
swap(&a,&b); // simply use printf after this to print swapped values
18+
swap(&a,&b); // swaps the values of the a and b variables
1919
```

0 commit comments

Comments
 (0)