simple program of graphics and thier outpu display with
a want what is out put of graohics in c language
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 |
write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
7 Answers Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
If I have a char * variable pointing to the name of a function ..
can anyone please tell about the nested interrupts?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
Why is it usually a bad idea to use gets()? Suggest a workaround.
What is null character in c?
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
Define function ?Explain about arguments?
2 Answers Geometric Software, Infosys,
Write a pro-gramme to determine whether the number is even or odd?
How can you convert integers to binary or hexadecimal?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?