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

how to write a bubble sort program without using temporary variable?

1 Answers   Aricent,


Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?

4 Answers  


what is an ERP?

2 Answers   Infotech,


What are near, far and huge pointers?

0 Answers   Hexaware, Thomson Reuters, Virtusa,


the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters

0 Answers  


What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?

0 Answers  


a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above

0 Answers  


cavium networks written test pattern ..

0 Answers   Cavium Networks,


How was c created?

0 Answers  


prog for 1st five prime numbers in 2^x - 1

0 Answers  


Create a simple code fragment that will swap the values of two variables num1 and num2.

0 Answers  


What are enums in c?

0 Answers  


Categories