Question: CAN SOMEONE PLEASE HELP ME ASAP. I NEED HELP WITH THESE 2 QUESTIONS and I ALSO POSTED THE OUTPUTS BELOW (WHATEVER UNDER 'PROBLEM 3 and
CAN SOMEONE PLEASE HELP ME ASAP. I NEED HELP WITH THESE 2 QUESTIONS and I ALSO POSTED THE OUTPUTS BELOW (WHATEVER UNDER 'PROBLEM 3 and 4', AND IGNORE THE OTHER PROBLEMS. PLEASE HELP ME AND EXPLAIN, I WILL GIVE THUMBS UP. THANKS A ALOT!!!!!



Problem 3: (15 points) Ask the user for a pixel location and store the location in 'row &column'Change that pixel to orange color. Orange color should be RGB- (255, 163, 26). For instance, if user enters row-2, column-0 then change the pixel (2,0) to orange color. void changePixelToOrange() unsigned int row-0, col-0; /I ENTER CODE HERE printf("changed pixel (%d, %d) to orange ", row, col); Problem 4: (10 points) Open a new file and write that file with the modified .bmp image with the orange pixel. File name is provided as parameter when calling in main() void saveToFile (const char *fileName) FILE *fp; /I ENTER CODE HERE fclose(fp); printf("File %s saved. ", fileName); Problem 3: (15 points) Ask the user for a pixel location and store the location in 'row &column'Change that pixel to orange color. Orange color should be RGB- (255, 163, 26). For instance, if user enters row-2, column-0 then change the pixel (2,0) to orange color. void changePixelToOrange() unsigned int row-0, col-0; /I ENTER CODE HERE printf("changed pixel (%d, %d) to orange ", row, col); Problem 4: (10 points) Open a new file and write that file with the modified .bmp image with the orange pixel. File name is provided as parameter when calling in main() void saveToFile (const char *fileName) FILE *fp; /I ENTER CODE HERE fclose(fp); printf("File %s saved. ", fileName)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
