hello all...i need help with the code below..
#include <stdio.h>
#include <windows.h>
main()
{
MessageBox(0,"hello world","hello world",0);
fflush(stdin);
getchar();
}
now i know it is perfectly clean code...but the problem is if i put 2 messagebox functions
linke this
#include <stdio.h>
#include <windows.h>
main()
{
MessageBox(0,"hello world","hello world",0);
MessageBox(0,"hello world","hello world",0);
fflush(stdin);
getchar();
}
i get the same box repeating itself twice...my question is how can i open 2 boxes...
(I am still a n00b @ "c")