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 |
Can i use Two or More Main Funtion in any C program.?
What is the usage of the pointer in c?
What is I ++ in c programming?
In which language linux is written?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What are the Advantages of using macro
What is time complexity c?
1,4,8,13,21,30,36,45,54,63,73,?,?.
10 Answers AMB, Franklin Templeton,
What is the most efficient way to count the number of bits which are set in a value?
main() { int a = 65; printf(ā%d %o %xā,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
Blade logic interview question. 1st round is a written tests with 15 multiple questions from c and c++. All are simple basic question. Like int main () { Int i=65; Return printf(ā%cā, i); } 2nd and 3rd round is technical interview. The position for which I was interview was core UNIX and c. Yes it is for system programming. The company has product name blade server. For their server they are creating their own command for their purpose. Example cd command. We can implement it in a c program by using the chdir() function. So the question asks related to PID, fork, pipe, shared memory, signal. Write a program in c which will act as cp command.
1 Answers BladeLogic, Infosys,
Here is a neat trick for checking whether two strings are equal