If you permit me, I want to show some tricks:
You don't need a white bitmap image, you can use a function to fill the screen in white colour.
Then, you can use a little image for the title if you want.
SDL_Rect rect = {0, 0, 320, 240};
Uint32 colwhite = SDL_MapRGB(screen->format, 255,255,255)...