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 c?

7 Answers   Tech Mahindra,


What is the difference between procedural and functional programming?

0 Answers  


explain what are actual arguments?

0 Answers  


increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {

2 Answers   HCL, Syntel, TCS,


what about "char *(*(*a[])())();"

3 Answers   Oracle,






A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler

0 Answers  


write a program to print data of 5 five students with structures?

0 Answers  


what is the size of an integer variable?

4 Answers  


why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???

0 Answers  


Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..

2 Answers  


Can we declare a function inside a function in c?

0 Answers  


What are pointers?

0 Answers   Accenture, Tavant Technologies, Zensar,


Categories