Search:

Type: Posts; User: Lazy Student

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    2,090

    Window Image Capture

    Do you know how i can capture the image of each running window in the desktop?!
    I want to do something similar to Windows powertoy that show me the thumbnail of each active window.
    look at the...
  2. Replies
    4
    Views
    1,091

    It is a challenge by my OO doctor. i searched all...

    It is a challenge by my OO doctor. i searched all the web and in all the books i have. i didnt find any.
    i dont want u guys to do it for me. i just need a clue of how doing it :confused: :confused:
  3. Replies
    4
    Views
    1,091

    Can this be done?!

    Hi,
    Can i connect to MS-Access database without using ADO or ODBC?!
    and how?!
    thanks in advance :D
  4. Replies
    17
    Views
    1,964

    you can do it like this: cout

    you can do it like this:



    cout << "Which items would you like to buy(Enter one item at a time then hit enter then type in how many you want to buy)? \n";

    cin.getline(item,25,'\n');...
  5. Replies
    5
    Views
    1,996

    I had an assignment similar to this! :D You...

    I had an assignment similar to this! :D

    You can use stack to solve this problem:



    for (every character in the infix)
    {

    case '(':
  6. Thread: isalpha

    by Lazy Student
    Replies
    9
    Views
    3,099

    num is a pointer which contain an address...

    num is a pointer which contain an address therefore there is no need for &!
  7. Thread: isalpha

    by Lazy Student
    Replies
    9
    Views
    3,099

    It works fine to me! can we see the full code?!...

    It works fine to me! can we see the full code?!
    why did u include return 0 in the while loop?!
  8. Replies
    3
    Views
    1,088

    Try the following: #include ...

    Try the following:




    #include <stdio.h>
    void function (float,float,float ,float *,float *);
    int main()
    {
  9. Replies
    11
    Views
    2,104

    I tested! when i enter 4 it exist the loop! so...

    I tested! when i enter 4 it exist the loop! so where is the problem?
  10. Replies
    10
    Views
    1,680

    There should be a file named with "file.html" in...

    There should be a file named with "file.html" in the same directory where the executable is! or it will open nothing!
  11. Replies
    10
    Views
    1,680

    Here is the exe file in case u dont believe me! :P

    Here is the exe file in case u dont believe me! :P
  12. Replies
    10
    Views
    1,680

    i tested on Dev-C++ and Borland 6, and its...

    i tested on Dev-C++ and Borland 6, and its working on both!!
    i am using XP but i dont think that makes a different.
  13. Replies
    10
    Views
    1,680

    I tested it, and it works fine!! :D

    I tested it, and it works fine!! :D
  14. Replies
    10
    Views
    1,680

    I am not sure but i think u can use the system...

    I am not sure but i think u can use the system function




    #include <iostream>
    using namespace std;

    int main ()
    {
  15. Look at my example below: #include...

    Look at my example below:



    #include <iostream.h>

    template <class T>
    T sum (T x, T y){
    T result= x + y;
    return result;
  16. Replies
    3
    Views
    1,529

    No its not local, im gonna use it inside another...

    No its not local, im gonna use it inside another class which i haven't written yet!
    Any ideas?!
  17. Replies
    8
    Views
    2,043

    or ??

    what the difference between them?!
    i know when we write <iostream> we have to put:
    using std::cout;
    using std::cin;
    and so on, but is there any other difference?! :confused:
  18. Replies
    3
    Views
    1,529

    Problem with templates

    hi all,
    i have the following code:


    #include <iostream.h>
    typedef struct node * ptr;

    template <class T> struct node{
    ptr next;
    T item;
  19. Replies
    7
    Views
    1,102

    thank you all, i think i got it!

    thank you all, i think i got it!
  20. Replies
    7
    Views
    1,102

    Virtual Functions

    Hi!
    what the difference between overriding a function and virtual functions?! im really stuck! :confused:
    for example i have this:

    #include <iostream.h>
    class one{
    public:
    one(){}
    virtual...
  21. Replies
    6
    Views
    3,293

    here u go! #include int main() {...

    here u go!

    #include <stdio.h>
    int main()
    {
    char option='y';char trash;
    while( option == 'y')
    {
    /* do somthing */
    printf("Want to continue [y|n]");
  22. Thread: recursion

    by Lazy Student
    Replies
    1
    Views
    904

    recursion

    hi.. I am suppose to write a recursive function that reverses the characters from s[j] to s[k] without changing the following main program:


    int main (void) {
    char phrase [] = "by the sea, by...
  23. Replies
    5
    Views
    20,180

    Illegal use of floating point

    hi!
    When I try to run the program below, I get the following error:
    Illegal use of floating point.
    Can anyone tell me what's wrong?!?! :confused: :confused:


    #include <stdio.h>
    #include...
  24. Replies
    12
    Views
    2,861

    thats because of my stupid keyboard! i cant...

    thats because of my stupid keyboard! i cant recognize the comma from the point! :D
  25. Replies
    12
    Views
    2,861

    Thank you all! no, im not from europe! i wont...

    Thank you all!

    no, im not from europe! i wont tell you where im from! :p :p:p
Results 1 to 25 of 26
Page 1 of 2 1 2