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



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

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

0 Answers   Celstream,


What is Function Pointer? Explain with example?

3 Answers  


int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?

4 Answers   TCS,


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

1 Answers   Aricent,


Can a binary search tree be used as an index? If yes, how? Explain

0 Answers   TCS,


what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?

4 Answers  


Which node is more powerful and can handle local information processing or graphics processing?

0 Answers  


Explain can you assign a different address to an array tag?

0 Answers  


What is meant by recursion?

0 Answers   ADP,


Which of these functions is safer to use : fgets(), gets()? Why?

0 Answers  


Tell us two differences between new () and malloc ()?

0 Answers   Adobe,


Explain command-line arguments in C.

1 Answers  


Categories