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 p in text message?
How can I read data from data files with particular formats?
What is pass by value in c?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Explain zero based addressing.
What are the usage of pointer in c?
What are the types of pointers?
Create a simple code fragment that will swap the values of two variables num1 and num2.
How can I avoid the abort, retry, fail messages?
What is a keyword?
What is c system32 taskhostw exe?
What are shell structures used for?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What is break statement?
What is the difference between int main and void main in c?