Search:

Type: Posts; User: hanniball

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    2,826

    The scope of the posted code was to prof a point...

    The scope of the posted code was to prof a point not to be compilable or to do something useful.

    I was able to export using "__declspec(dllexport)" a function from a executable file ("*.exe") to...
  2. Replies
    5
    Views
    2,826

    Ok thanks for the response. I was somehow...

    Ok thanks for the response. I was somehow expecting such a response.
  3. Replies
    5
    Views
    2,826

    VC 6.0 Linker/Compiler problem

    Hello,
    I have the following question:
    I am trying to create two win32 console applications with MFC support First.exe and Second.exe. Second.exe is exporting a function to First.exe using...
  4. Replies
    3
    Views
    977

    Thank you. sscanf("%i") is what I was...

    Thank you.

    sscanf("%i") is what I was searching.

    Also the conversions using C++ methods where helpfull too. I didn't knew them till now :)
  5. Replies
    3
    Views
    977

    Number representation

    Hello.

    I would like to put a question maybe someone could help me. I wanna create a c++ application that get's a number as a argument and does stuff with it.
    Using other commandline...
  6. Ok. Thanks for the information.

    Ok.
    Thanks for the information.
  7. Read line by line from file with EOL different that OS EOL

    Hello.
    I would like to ask if somebody know an elegant way how to read line by line from a file written in UNIX/WINDOWS/MAC format.
    The Idea is that the EOL is different when the file is written...
  8. Replies
    13
    Views
    1,699

    I wrote the error message by hand because I can't...

    I wrote the error message by hand because I can't copy paste an error message from Borland C 3.1. I check it severel times and I wrote it correctly. In Borland C 3.1 in all error messages the names...
  9. Replies
    13
    Views
    1,699

    Hm ... curios in Visual C++ 2005 Express Edition...

    Hm ... curios in Visual C++ 2005 Express Edition it's compiling fine and working fine without any changes and in all ways prezented. In Borland C 3.1 It's not compiling. And under linux using gcc...
  10. Replies
    13
    Views
    1,699

    Sure !!! Stil not working the same error :-(

    Sure !!! Stil not working the same error :-(
  11. Replies
    13
    Views
    1,699

    I just wanna try things out. In this code I see a...

    I just wanna try things out. In this code I see a problem I don't understand and I wanna know why it is not working. I allready found a way how to solve this problem. If I don't use "List *head" my...
  12. Replies
    13
    Views
    1,699

    template List* List::Add(List...

    template <class T> List<T>* List<T>::Add(List *head,T *elem)


    The error I get: "Invalid use of template 'List' "

    When I use:



    template <class T> List<T>* List<T>::Add(List<T> *head,T...
  13. Replies
    13
    Views
    1,699

    Templates. Help!

    I have the following code:



    template <class T> class List
    {
    public:
    List *urm;
    T *info;
    List();
  14. Replies
    1
    Views
    1,301

    Help with templates

    template <class T> class b
    {
    T v;
    ... // code here
    };

    int main()
    {
    b<b<int>> *C;
    ...
  15. Replies
    10
    Views
    1,194

    Thanx for the help

    Thanx for the help
  16. Replies
    10
    Views
    1,194

    How to use pointer to a function

    I have the following code


    class test {
    int t(int );
    };
    int test::t(int a){
    return a;
    }
  17. Replies
    6
    Views
    1,083

    I have a error can somebody help ?

    I have this code :


    // Grafuri.cpp : Defines the entry point for the console application.
    //

    #include "stdafx.h"
    #include <stdlib.h>
    #include <process.h>
  18. Replies
    4
    Views
    970

    Ok and how do I pass into the function the whole...

    Ok and how do I pass into the function the whole array and not only a value of the array ?
  19. Replies
    4
    Views
    970

    How to use pointers in this case?

    I have the following code


    #include <stdio.h>

    typedef struct
    {
    char nume[60];
    char sectie[20];
    int grupa;
Results 1 to 19 of 19