Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Emosans committed Jan 4, 2025
1 parent 6381a89 commit e4b3b5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snippets/c/mathematical-functions/swap-numbers.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ void swap(int* num1,int* num2){

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

0 comments on commit e4b3b5f

Please sign in to comment.