simple program of graphics and thier outpu display with
a want what is out put of graohics in c language



simple program of graphics and thier outpu display with a want what is out put of graohics in c la..

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

Post New Answer

More C Interview Questions

What is the use of ?: Operator?

0 Answers  


What is a loop?

0 Answers  


What is wrong with this program statement?

0 Answers  


How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?

2 Answers   Aricent, Manipal University,


write a program to print %d ?

12 Answers  






How many types of operators are there in c?

0 Answers  


C,c++, Java is all are structural oriented or procedure oriented language..?

6 Answers  


what information does the header files contain?

6 Answers   BSNL, Cisco, GDA Technologies,


What are inbuilt functions in c?

0 Answers  


how to execute with out main in cprogram

15 Answers   Infosys,


What is the use of pointers in C?

0 Answers   Impetus, Motorola, Tavant Technologies, Virtusa,


write a c program that prints all multiples of 3between 1 and 50.

5 Answers  


Categories