simple program of graphics and thier outpu display with
a want what is out put of graohics in c language
Answer Posted / manoj kumar
/* Simple program to illustrate use of a dialog box */
main()
{
/* Define default values: */
int n = 0;
float x = 0.0;
/* Define contents of dialog window */
create_int_dialog_entry("n", &n);
create_float_dialog_entry("x", &x);
/* Create window with name "Setup" and top-left corner
at (0,0) */
set_up_dialog("Setup", 0, 0);
/* Display the window and read the results */
read_dialog_window();
/* Print out the new values */
printf("n = %d, x = %f\n", n, x);
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what is gets() function?
FILE PROGRAMMING
What is quick sort in c?
What are the advantages of using linked list for tree construction?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is #include stdlib h?
What does int main () mean?
Is c++ based on c?
What is difference between stdio h and conio h?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Do pointers need to be initialized?
What are bitwise shift operators in c programming?
What math functions are available for integers? For floating point?
What is pointer & why it is used?
Is it cc or c in a letter?