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 |
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What is Function Pointer? Explain with example?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
how to write a bubble sort program without using temporary variable?
Can a binary search tree be used as an index? If yes, how? Explain
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
Which node is more powerful and can handle local information processing or graphics processing?
Explain can you assign a different address to an array tag?
What is meant by recursion?
Which of these functions is safer to use : fgets(), gets()? Why?
Tell us two differences between new () and malloc ()?
Explain command-line arguments in C.