simple program of graphics and thier outpu display with
a want what is out put of graohics in c language
Answer / 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 |
What is const and volatile in c?
How can I set an array's size at run time?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
5 Answers TCS, Vimukti Technologies,
Explain how do you determine the length of a string value that was stored in a variable?
What is a sequential access file?
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
Is file a keyword in c?
Write a c program using for loop in switch case?
which is an algorithm for sorting in a growing Lexicographic order
please explain every phase in the "SDLC" in the dotnet.
what is link list?
Why is it that not all header files are declared in every C program?