Skip to content

Commit

Permalink
Add parentheses to lab-02 get pixel macro
Browse files Browse the repository at this point in the history
Signed-off-by: Cosmin Popa <[email protected]>
  • Loading branch information
c7stef authored and teodutu committed Mar 11, 2024
1 parent 9216b71 commit c668bef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion laborator/content/operatii-memorie-gdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ p.b = 0.11 * p.b;
> Accesarea elementelor matricei de pixeli se va face folosind operații cu pointeri.
> **Hint:** Pentru simplificare, vă puteți folosi de urmatorul macro:
> ```c
> #define GET_PIXEL(a, i ,j) (*(*(a + i) + j))
> #define GET_PIXEL(a, i ,j) (*(*((a) + (i)) + (j)))
> ```
### **4. Find-Max**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include <time.h>
#include "pixel.h"

#define GET_PIXEL(a, i, j) (*(*(a + i) + j))
#define GET_PIXEL(a, i, j) (*(*((a) + (i)) + (j)))

void colorToGray(Picture *pic)
{
Expand Down

0 comments on commit c668bef

Please sign in to comment.