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
When the macros gets expanded?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
Explain what are preprocessor directives?
What is echo in c programming?
How can I copy just a portion of a string?
What is a volatile keyword in c?
What are the application of c?
How can I handle floating-point exceptions gracefully?
Do you know pointer in c?
Tell me with an example the self-referential structure?
What are the key features in c programming language?
What is the value of c?
Explain what is the benefit of using const for declaring constants?
Is it acceptable to declare/define a variable in a c header?
Explain what is page thrashing?