Search:

Type: Posts; User: GertFaller

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Hi, I had the same problem on Win98. Here's...

    Hi,

    I had the same problem on Win98.
    Here's the way I did install the .net SDK :
    1) Go to your C:\WINDOWS\TEMP and clean it as much as possible
    2) Run the .net SDK installer
    3) You get a...
  2. Thread: meaning

    by GertFaller
    Replies
    6
    Views
    2,119

    char buffer[256] is just an array in which input...

    char buffer[256] is just an array in which input is stored.
    Try :

    #include <stdio.h>
    #include <string.h>

    int main(void)
    {
    char buffer[256];
    printf(" enter name and press enter ");
  3. Thread: meaning

    by GertFaller
    Replies
    6
    Views
    2,119

    I think you have got : char...

    I think you have got :
    char buff[256]
    which declares an array of 256 chars (and is used as a buffer maybe)
  4. Are you getting multi millions of different...

    Are you getting multi millions of different values or a (rather) small set of different values ?
  5. Thread: Pls Help!!!

    by GertFaller
    Replies
    4
    Views
    944

    MulMinMax(2,10,3) What I have understood : min...

    MulMinMax(2,10,3)
    What I have understood :
    min = 2
    max = 10
    nextnum = 3

    so product of numbers from min to max "step" 3
    MulMinMax(2,10,3) = 2 * (2+3) * (2+3+3) = 2 * 5 * 8

    An other example...
  6. Replies
    4
    Views
    1,617

    Your code does not work for prime=9, it returns...

    Your code does not work for prime=9, it returns 'p'.
    Your "if ... else" is not good.

    For i=2
    9 % i = 1 != 0
    so your prog goes to "else" and returns 'p' !!!
    Just take off the "else"...
  7. Replies
    2
    Views
    1,087

    For ah and al syntax is : ...

    For ah and al syntax is :

    regs.h.ah = 16;
  8. Replies
    2
    Views
    1,173

    Re: Try this Out

    Or just with a loop:




    for(i=0;i<strlen(string);i++)
    string[i]=string[i+1];
  9. Replies
    3
    Views
    949

    I think your problem is with diplaying results....

    I think your problem is with diplaying results.
    Here's a fix.


    #include<iostream>

    using namespace std;

    enum visits{nv,v};
  10. Replies
    2
    Views
    1,339

    If you have debug you can try : ...

    If you have debug you can try :

    C:\WINDOWS\COMMAND\debug.exe mybooter.whatyou want

    and then when debug has loaded it, type

    -w 100 0 0 1

    it will be written to the bootsector of the floopy
  11. Replies
    9
    Views
    3,830

    Of course ...

    Of course ...
  12. Replies
    9
    Views
    3,830

    Let's speak about bytes. A byte is 8 bits long...

    Let's speak about bytes.
    A byte is 8 bits long so from
    00000000 eg 0
    to 11111111.
    It's a char in C.

    Whether or not a char is signed or unsigned (by default) is dependant...
  13. Thread: pls help

    by GertFaller
    Replies
    6
    Views
    1,151

    Are you using Goof Program program , Well...

    Are you using Goof Program program ,

    Well it's always the same answer, instead of :




    use
  14. Thread: pls help

    by GertFaller
    Replies
    6
    Views
    1,151

    Are you using Goof Program program , Well it's...

    Are you using Goof Program program ,

    Well it's always the same answer, instead of :
  15. Thread: pls help

    by GertFaller
    Replies
    6
    Views
    1,151

    I think you mean : while(key!='q')

    I think you mean :


    while(key!='q')
  16. Replies
    7
    Views
    10,958

    At first look I see 2 problems. First : int...

    At first look I see 2 problems.

    First : int FindAnExpression(char[]);
    which you call without arg in your recursion.


    Second :every time you call FindAnExpression you get a new instance of...
  17. Replies
    2
    Views
    3,455

    You have : unsigned char sl[]="SCAN LINE"; ...

    You have :
    unsigned char sl[]="SCAN LINE";
    unsigned char chc1;
    cin >> chc1;
    if(chc1==sl)

    chc1 is a char and sl a pionter to an array.

    Since chc1 is A char you are expecting a single...
  18. Replies
    7
    Views
    10,958

    First problem is that you cannot even text your...

    First problem is that you cannot even text your program since
    you have
    void FindAnExpression(int[])
    and you want return from that function so
    ...
  19. Replies
    5
    Views
    1,678

    I have : LONG RegOpenKeyEx( HKEY hKey, //...

    I have :

    LONG RegOpenKeyEx(
    HKEY hKey, // handle of open key
    LPCTSTR lpSubKey,// address of name of subkey to open
    DWORD ulOptions,// reserved
    REGSAM samDesired,// security...
  20. Just add -mwindows gcc -mwindows -o myfile.exe...

    Just add -mwindows

    gcc -mwindows -o myfile.exe myfile.c

    and notice that Dev-C++ is an IDE which comes with gcc.
  21. Replies
    3
    Views
    1,255

    You'll find there X11 tutorials links ...

    You'll find there X11 tutorials links

    http://www.rahul.net/kenton/xsites.html#Xtutorials
  22. Possible yes. Usual I don't know.

    Possible yes.
    Usual I don't know.
  23. Replies
    9
    Views
    3,716

    With : bcc32.exe hello.c or bcc32.exe...

    With :

    bcc32.exe hello.c
    or
    bcc32.exe hello.cpp
    for console apps (main function).

    For Windows apps (Winmain function):
    bcc32.exe -W hello.c
  24. Replies
    9
    Views
    3,716

    You just edit them with notepad or edit or what...

    You just edit them with notepad or edit or what you want ..
  25. Replies
    21
    Views
    4,882

    Which compiler exactly ?

    Which compiler exactly ?
Results 1 to 25 of 49
Page 1 of 2 1 2