Search:

Type: Posts; User: bljonk

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    9
    Views
    2,813

    Update please~

    You sould have updated your compiler long ago pal~

    I'm using Dev-C++ 4.9.41 that's the latest release:o , :p
  2. hey!!! chillin man the guy just discovered...

    hey!!! chillin man the guy just discovered that's also possible to multiply to numbers using pointers(hahaha).
  3. Replies
    8
    Views
    47,366

    Dev-C++ 5 beta 3

    yeah! namespaces are a factor there~

    which version are you using anyways?
  4. Replies
    4
    Views
    1,320

    #include #include //for...

    #include <stdio.h>
    #include <string.h> //for strlen()
    #include <stdlib.h> //for atoi()
    #include <conio.h> //for getch()

    #line 1 /* makes the first line: 'void main(...)' help Debuging...
  5. Liberty~

    get books written by "Jesse Liberty" they're simple, and yet help full
  6. Thread: Malloc

    by bljonk
    Replies
    12
    Views
    3,379

    sizes and pointers

    int A[x][y];

    if x & y are known:

    int *p = malloc((x*y)*sizeof(int));

    p = &A[0];

    would do the job~, don't forget to free the memory when finished
  7. Replies
    13
    Views
    4,946

    #include

    include <stdbool.h> is missing in the source code!
  8. Replies
    7
    Views
    5,208

    Ok! !if the source code is C and the extension...

    Ok!
    !if the source code is C and the extension is just PC, them just compile it just as you compile a normal *.c file.

    if is an *.o or *.obj that you are refering to 'link' it.
  9. int main(int argc,char *argv[]) {return 0; } ...

    int main(int argc,char *argv[])
    {return 0;
    }

    int main(void)
    {return 0;
    }

    void main(int argc,char *argv[])
    {
  10. Replies
    4
    Views
    928

    consider: C:\>prog A: -s -t executes the...

    consider:
    C:\>prog A: -s -t

    executes the job(prog) to the file or device A: with that options -s & -t.

    for each [argc] is the number of arguments passed to prog; that are 3 (A:, -s, -t);
    ...
  11. Replies
    6
    Views
    1,878

    are you using~

    Are you using GCC?

    I seem to be getting a couple of errors that I can't figure out.
  12. Replies
    8
    Views
    1,566

    I know that piece of code! It's in the book : "C...

    I know that piece of code!
    It's in the book : "C the complete reference"

    & that's a problem because I'm only guessing that u got a msgbox saying that that's not a valid win32 program.

    P.S.: by...
  13. Replies
    6
    Views
    1,778

    is't obvious that it will behave and be accessed...

    is't obvious that it will behave and be accessed as a two dimetional array.
  14. Thread: gotoxy question

    by bljonk
    Replies
    5
    Views
    1,974

    View Post

    I don't know about your compiler but i use gcc from DJGPP you need to include <conio.h> to use gotoxy();
  15. lol~

    (1):there no passing values for reference in 'C', it's C++; and passing a value by reference is the same as creating an shortcut(alias) for a program in a folder to your desktop, in this case for a...
  16. Replies
    6
    Views
    1,395

    #asm

    if u use djgpp u maybe capable of using the preprocessor #asm

    #asm
    mov ax,5
    #endasm
  17. Replies
    1
    Views
    1,287

    try upcoming: >Sams Teach Yourself C++ in 21...

    try upcoming:
    >Sams Teach Yourself C++ in 21 Days 4th Edition
    by: Jesse Liberty.

    Use:
    >C++: The Complete Reference, Third Edition

    And more advanced in the subject later on, try:
    >STL...
  18. Replies
    174
    Views
    21,092

    I'm back ~

    IDEA:
    >>maybe we should be able to build characters
    e.g:
    Giant-Wizard-Dementor-Ghost-Dragon-Warewolf-Android.

    >>powers
    e.g:
    fly(ignore obstacle; no points awarded)-swim(if the is a island to...
  19. Replies
    6
    Views
    5,754

    Thanks that's all i needed to know

    Thanks that's all i needed to know
  20. Replies
    6
    Views
    5,754

    Pascal triangle numbers generation~

    I've been unsuccessfully trying to write a program to generate pascal triangle numbers and insert them into an 2D flexible array, but i still not getting it; any sugestions?
  21. Replies
    5
    Views
    2,407

    it will return 0 if the raise was successfull,...

    it will return 0 if the raise was successfull, otherwise it will return 1 or -1.

    and the other question is out of my understanding. Sorry about it
  22. Thread: c compiler

    by bljonk
    Replies
    8
    Views
    1,322

    dm

    try digital mars is free at http://www.digitalmars.com
  23. Replies
    12
    Views
    1,989

    U have to search for them in the folders that...

    U have to search for them in the folders that came with your compiler package~

    [-]dm
    |
    [+]html
    [+]bin
    [+]src
    | ->*.h
    | ...
    [+]text
  24. Replies
    5
    Views
    1,534

    NOT NECESSARY

    you can get them from your keyboard easily:

    e.g:

    press: ALT + 130 (must be a digit with three numbers) ;
    output >> é

    i use it to write "José."

    Is damn UNICODE
  25. Replies
    12
    Views
    1,989

    It differs~

    It differs from compiler to compiler;
    if u write your own "*.h" file to compile keep it in the same directory with the "*.c" file that contains the source code:
    e.g:

    "units.h"
    <stdio.h>

    int...
Results 1 to 25 of 70
Page 1 of 3 1 2 3