You can easily use the Windows SDK MessageBox function to display a dialog box with various icons like an exclamation mark, a question mark, etc.
Include windows.h at the top of your .c file.
...
MessageBox(NULL,"Message","Title",MB_ICONQUESTION);
...
I didn't see any attachment to your post.
See the attached example for more uses of MessageBox.