Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add parentheses to lab-02 get pixel macro #172

Merged
merged 1 commit into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
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
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
Loading