问题 My blur function is behaving oddly. I've recreated the 3x3 bitmap from check50 to get more approximate results from my tests but, for some reason, every right or lower edge pixels are not working properly. While debugging, I've found that, for some reason, my for loops are not behaving properly. I'll show my code and an example below. Code: // Blur image void blur(int height, int width, RGBTRIPLE image[height][width]) { RGBTRIPLE temp[height][width]; // Declares temporary structure to avoid