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
What is self-referential structure in c programming?
Can an array be an Ivalue?
How does normalization of huge pointer works?
What is a file descriptor in c?
What is void pointers in c?
What is the difference between formatted&unformatted i/o functions?
What should malloc() do?
Is register a keyword in c?
When can you use a pointer with a function?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
Write a program to swap two numbers without using the third variable?
What is scope of variable in c?
Why do we write return 0 in c?
Explain how do you convert strings to numbers in c?
Compare array data type to pointer data type