How addition 2 binary number in the C++ language?
How addition 2 binary number in the C++ language?
Hmmm... what datatype are they?
Do you mean you want to show an int as a binary number and then the addition of another number, also displayed in binary form and the answer in binary form? If so, the addition is still handled as ints.
Tuesday, July 14, 2009
How would i make this script in C++ language? Really easy to do, im just stupid?
I want to make a program that when intalled says "onshut down - message pop up "Goodbye". or something in the c language, how would i do this?
Also if an image could pop up instead that would be good if poss.
How would i make this script in C++ language? Really easy to do, im just stupid?
i hope you do a good job. If u need any tips you should go on
google.com
answers.com
or ask.com
maybe you have a pup up blocker you should talk to your computer makers
Reply:You'll have better success with this question in the Programming section, not Environment. Good luck.
Also if an image could pop up instead that would be good if poss.
How would i make this script in C++ language? Really easy to do, im just stupid?
i hope you do a good job. If u need any tips you should go on
google.com
answers.com
or ask.com
maybe you have a pup up blocker you should talk to your computer makers
Reply:You'll have better success with this question in the Programming section, not Environment. Good luck.
How can i include graphic program in c language? ex- i've to draw a circle(10,20,30) runtime err occur?
c language-----
graphics-----
runtime error-----
draw a circle----
How can i include graphic program in c language? ex- i've to draw a circle(10,20,30) runtime err occur?
there must be some error with the initgraph function.
#include%26lt;conio.h%26gt; // for getch();
#include%26lt;graphics.h%26gt;
void main()
{
int gdrive,gm=DETECT;
initgraph(%26amp;gdrive,gm,""); /*let the system automatically detect the path to .bgi files*/
circle(50,50,30);/*in your example radius 30 with x,y as 10,20 will cause the circle to be a little away from the screen. */
getch();
closegraph();
}
hope the above code will work if not contact me m_gopi_m@yahoo.co.in
graphics-----
runtime error-----
draw a circle----
How can i include graphic program in c language? ex- i've to draw a circle(10,20,30) runtime err occur?
there must be some error with the initgraph function.
#include%26lt;conio.h%26gt; // for getch();
#include%26lt;graphics.h%26gt;
void main()
{
int gdrive,gm=DETECT;
initgraph(%26amp;gdrive,gm,""); /*let the system automatically detect the path to .bgi files*/
circle(50,50,30);/*in your example radius 30 with x,y as 10,20 will cause the circle to be a little away from the screen. */
getch();
closegraph();
}
hope the above code will work if not contact me m_gopi_m@yahoo.co.in
Suggest me quick and easy learning of C language website?
i would like to learn C programming language through websites. Also suggest me for best web site for web designing.
Suggest me quick and easy learning of C language website?
venkateswar p there is no easy way to learn it my friend. What you could do is learn slowly and by making mistake you will learn properly. There is no easy answer to this venkateswar but for you here is link and see if it helps you
http://www.google.co.uk/search?hl=en%26amp;q=l...
Reply:learn it from the net. use google to find the sites. and be sure to keep practising.
Reply:http://cplus.about.com/od/beginnerctutor...
song downloads
Suggest me quick and easy learning of C language website?
venkateswar p there is no easy way to learn it my friend. What you could do is learn slowly and by making mistake you will learn properly. There is no easy answer to this venkateswar but for you here is link and see if it helps you
http://www.google.co.uk/search?hl=en%26amp;q=l...
Reply:learn it from the net. use google to find the sites. and be sure to keep practising.
Reply:http://cplus.about.com/od/beginnerctutor...
song downloads
I want to write a program in C language?
I want to write a program in C language (in graphics mode). As an output that gives a rectangular box %26amp; this box must be containing two fields ‘Name:’ %26amp; ‘ID:’ so its enable me to give my name %26amp; id on this field. I know that after running program cursor is blink top of the windows but I want to blink it inside the rectangular box. So please help me to write this code.
I want to write a program in C language?
Does "in graphics mode" mean using the windows gui or in a console app using graphic characters?
I assume you mean a console app because the gui would automatically give you this stuff.
You need to write it using a cursor control library or perhaps if it's simple enough, just know the ascii terminal control codes. Search the web for ASCII/VT100 cursor control commands (I've listed a couple of them) and then write your output using those escape sequences.
For example, you output routines would do the following:
1) Clear the display
2) Write a line at position x,y
3) write characters down the sides of the box
4) write the bottom line
5) write the prompts at specific positions
Then your input routine would
1) place the cursor at the beginning of the name entry and accept x characters
2) Validate data and display message a x,y if needed
3) Place the cursor at beginning of ID entry
4) validate and write message as needed.
I've done something similar, although not in C, but the concept is the same.
I want to write a program in C language?
Does "in graphics mode" mean using the windows gui or in a console app using graphic characters?
I assume you mean a console app because the gui would automatically give you this stuff.
You need to write it using a cursor control library or perhaps if it's simple enough, just know the ascii terminal control codes. Search the web for ASCII/VT100 cursor control commands (I've listed a couple of them) and then write your output using those escape sequences.
For example, you output routines would do the following:
1) Clear the display
2) Write a line at position x,y
3) write characters down the sides of the box
4) write the bottom line
5) write the prompts at specific positions
Then your input routine would
1) place the cursor at the beginning of the name entry and accept x characters
2) Validate data and display message a x,y if needed
3) Place the cursor at beginning of ID entry
4) validate and write message as needed.
I've done something similar, although not in C, but the concept is the same.
Does anyone have a source code in c language for the game mastermind???
c language pls... i need it badly...
Does anyone have a source code in c language for the game mastermind???
Check out http://www.pscode.com for great sample codes.
Reply:Nobody "needs" source code. You need food, warmth and shelter. You only "want" source code for a game - there's a huge difference.
Does anyone have a source code in c language for the game mastermind???
Check out http://www.pscode.com for great sample codes.
Reply:Nobody "needs" source code. You need food, warmth and shelter. You only "want" source code for a game - there's a huge difference.
How would i make this script in C language? Really easy to do, im just stupid?
I want to make a program that when intalled says "onshut down - message pop up "Goodbye". or something in the c language, how would i do this?
Also if an image could pop up instead that would be good if poss.
How would i make this script in C language? Really easy to do, im just stupid?
no point..
if the pc shuts down, u want it to shut down.
beside u'd probably need to use c++ and the windows api.
Also if an image could pop up instead that would be good if poss.
How would i make this script in C language? Really easy to do, im just stupid?
no point..
if the pc shuts down, u want it to shut down.
beside u'd probably need to use c++ and the windows api.
Subscribe to:
Posts (Atom)