Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

What is self-referential structure in c programming?

1140


Can an array be an Ivalue?

1051


How does normalization of huge pointer works?

1098


What is a file descriptor in c?

1052


What is void pointers in c?

955


What is the difference between formatted&unformatted i/o functions?

1001


What should malloc() do?

1098


Is register a keyword in c?

992


When can you use a pointer with a function?

988


Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?

1074


Write a program to swap two numbers without using the third variable?

1014


What is scope of variable in c?

984


Why do we write return 0 in c?

1003


Explain how do you convert strings to numbers in c?

1019


Compare array data type to pointer data type

965