Monday, May 24, 2010

Wat is an AIM server like koolim, meebo, and ebuddy? something where i dont have to download a software?

i dont want something where ihave to download a software b/c the software doesnt connect to the internet - parents blocked the AIM access to my comp. koolim and meebo both worked b/c it was on the internet browser i guess? idk but wats something similar to those? cuz those are now blocked on my comp too..

Wat is an AIM server like koolim, meebo, and ebuddy? something where i dont have to download a software?
try www.aim.com and click aim express, unless they blocked that site. But in my opinion, you should really listen to your parents.
Reply:AIM has a service called AIMExpress that you actually dont have to dl onto the computer. I use this at school, since my school has AIM (the actual messanger blocked). Just go to www.aim.com and look for the express! Make sure you have popup blocker off or it will block it. Good lucK!
Reply:uhmm my parents did the same thing so i just go to www.plugoo.com its just like all those other sites

apricot

Which of the following groups is a major category of software?

A. Spreadsheet software





B. Word processors





C. Application software





D. Database

Which of the following groups is a major category of software?
I'm gonna go with C. Application Software because applications seem to represent a more broad spectrum of software. Database, Word Processing, and Spreadsheet software are all specialized.
Reply:probably d.








do ur own homework
Reply:database


C++ very noob here pls help ! thnx?

im very much noob here (just started it 2days ago lol) im using Dev C++ Bloodshed Software (lol dont know how to say it in correct technical grammar).





Hello World is d most basic (like hacking pinball scores when using CE) but my problem is after i compile d source file and run it, the only thing that happens is that the command prompt (or command.com whatever) flashes for only a few milliseconds. I cant see then if the messege "Hello World" had appeard...








help me pls.. lol








when creating hello world, is it at new source file? or at new project? or at new resouce file? lol pls support d noob thnx !

C++ very noob here pls help ! thnx?
Hi,





Try creating a batch file to run your program and put pause as the last command e.g.





myapp.exe


pause





saved as myapp.bat








When you run this the window should stay on the screen for you to read until a key is pressed.





It is most likely a new project (console app)
Reply:Just try out by giving


getch();


(or)


getche();


just before the closing of main()


It ll wait for u to see the message.


You have to include


#include%26lt;conio.h%26gt;
Reply:a). Run your compiled program from the command line.


or


b). Set a breakpoint on your program's return statement


or


c) Step through the program using the debugger.


or


d) Add the line of code:


while(1);


to create an infinite loop.





If you don't know how to do step b or c, you are eventually going to learn, so pull out the manual now and learn how to do it.
Reply:put this statement right before return 0 in your int main function





system("pause");





example...


#include %26lt;iostream%26gt;


using namespace std;


int main()


{


//all code here


cout %26lt;%26lt; "almost done with program, going to stop here" %26lt;%26lt; endl;


system("pause");


return 0;


}





this will give a message to push a key to continue to the end of the program.





to answer your questions...





DEV C++ is called a compiler


helloworld.cpp is called a source file


helloworld.cpp and other files relating to it, such as helloworld.h would be considered a project (which means your into more advanced programming stuffs)


and helloworld.exe would be a new program, created by you.





I don't really think your a noob, your more of a newbie
Reply:Here ya go.


Using Dev-C++ (The compiler that you use aswell)


I have coded a simple Hello World program for you


and even added some comments on what-does-what.


(Also, you want to make a new source file.)








//Pre-Processor directives


#include %26lt;iostream%26gt;


#include %26lt;conio.h%26gt; // for getch();





//Specified namespace


using namespace std;





int main()


{


//Cout object


cout %26lt;%26lt; "Hello world";





//Get keyboard input.


getch();


}








Enjoy,


- Void
Reply:The problem is that your IDE runs the program and closes it before you can see it.. there should be an option to not have it do that... or you can put a breakpoint in the program and have the debugger stop at that point... or... you can open a command window and execute the program from there... (probably the best option)... although the batch idea issued before isn't a bad option either...


Sos C programing assigments?

C programing .Software Turbo c ver. 2





Write a program that will find the smallest ,largest and average values in a collection of N numbers .Get the value of N before scanning each value in the collection numbers


Its my assigment due in 1 week time

Sos C programing assigments?
Are you asking us to do ALL your homework for you?


Where can i get the c programming source codes to learn this?

i am writing a project on 'data recovery from a crashed hard disk.' i intend to use c programming software but i need to get the c programming source codes for an already written data recovery software to learn from.

Where can i get the c programming source codes to learn this?
please see this link


http://boomerang.sourceforge.net/lostsou...
Reply:try using google codesearch

song words

C PROGRAMING HELP?

C programing software : Turbo c Ver. 2 Borland





Write a program thet accepts any number from the keyboard and tells you whether it is a non negative interger .the number should be sent to the function int_test (),which returns either value or -1 if the number is negative / zero .If it is non negative but not an interger .Inputs should continue until a zero is input





Function and variable


Main()


input from keyboard


interger Return from function


Int _test()


value from main()


result Value to return





OUTPUT


Your number:48


The number is :48


Your number :-14.3


The number is negative


Your number :12.345


The number is not an interger


Your number :0





My assigment due in 1 week time

C PROGRAMING HELP?
Are you asking us to do ALL your homework for you?


C programing help?

C programing Software : Turbo C ver.2 Borland





Write a program that accepts any number of value (up to100) from the terminal and sorts them in decending order (highest number first ).USe some alpha character ,such as q to end input.





Variables


Choose appropriate variables





OUTPUT


Input numbers,


%26gt;27


%26gt;92


%26gt;-116


%26gt;41


%26gt;.007


%26gt;-0.007


%26gt;0





Here they are in descending order


92 41 27 0.007 -0.007 -116





My assigment due in 1 week

C programing help?
Here is the code for a Selection Sort. That's the main part of the program. You should be able to do the rest pretty easily.





void selectionSort(int numbers[], int array_size)


{


int i, j;


int min, temp;





for (i = 0; i %26lt; array_size-1; i++)


{


min = i;


for (j = i+1; j %26lt; array_size; j++)


{


if (numbers[j] %26lt; numbers[min])


min = j;


}


temp = numbers[i];


numbers[i] = numbers[min];


numbers[min] = temp;


}


}
Reply:Stand up on your own legs, if not in your life yo have to suffer, now you have one week of time to do you home work, just open google and type "sorting program in c" by this you can get list of program or list ideas by that experiment them on you system if you have c configered in you system see the result by this you some satisfaction that wore one programm.





here is example program for you


http://www.engin.umd.umich.edu/CIS/cours... but understand it and try it dont just submit it as your home work.
Reply:Are you asking us to do your homework for you???