Search:

Type: Posts; User: breaka

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Thread: c in borland

    by breaka
    Replies
    8
    Views
    3,829

    is OWL web onthology language? i copied the code...

    is OWL web onthology language? i copied the code from a website, does that have anything to do with it
  2. Thread: c in borland

    by breaka
    Replies
    8
    Views
    3,829

    #include #include ...

    #include <stdio.h>
    #include <stdlib.h>

    typedef struct record {
    int getal;
    struct record *volg;
    } ELT;


    int main(void)
  3. Thread: c in borland

    by breaka
    Replies
    8
    Views
    3,829

    got an exam in borland so really need to find out...

    got an exam in borland so really need to find out about it.

    whats a makefile?
  4. Thread: c in borland

    by breaka
    Replies
    8
    Views
    3,829

    c in borland

    what do the following messages mean?



    Linker Warning: No module definition file specified: using defaults

    I get the first warning al the time, but after compiling the program works fine.
  5. Replies
    4
    Views
    1,959

    made independent files instead of creating a...

    made independent files instead of creating a project, making it a project now, thanx;)
  6. Replies
    4
    Views
    1,959

    i just ran bps.c from borland 4.52, do i have to...

    i just ran bps.c from borland 4.52, do i have to compile every file or... dont now much about it
  7. Replies
    4
    Views
    1,959

    modular programming

    hello i'm writing this code to teach myself programming with modules, but obviously theres something wrong since my compiler says

    Compiling BPS.C:
    Linking bps.exe:
    Linker Warning: No module...
  8. Thread: writing records

    by breaka
    Replies
    11
    Views
    1,577

    dont wanna be stubourn but still not seeing why...

    dont wanna be stubourn but still not seeing why this program isn't working like i think it should. Propably my newbee , not-seeing-the-whole-idea , way of thinking.

    made some important changes...
  9. Thread: writing records

    by breaka
    Replies
    11
    Views
    1,577

    what exactly is the minefield your talking about....

    what exactly is the minefield your talking about. The array of pointers? the way the memory is allocated?

    How should i initalise the array tab if i want it to be an empty, soon to be filled,...
  10. Thread: writing records

    by breaka
    Replies
    11
    Views
    1,577

    actually i'm trying to open a plain txt file and...

    actually i'm trying to open a plain txt file and read whats in it with fscanf. Every lin in txt file comes into a structure and from the structure i want to write it into bin file.

    ...
  11. Thread: writing records

    by breaka
    Replies
    11
    Views
    1,577

    why doi get processor fault when doing this: ...

    why doi get processor fault when doing this:


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

    typedef struct {
    int nr;
    char naam[21];
  12. Thread: writing records

    by breaka
    Replies
    11
    Views
    1,577

    your right thanx , so fwrite is onely used with...

    your right thanx ,
    so fwrite is onely used with binary files then?
  13. Thread: writing records

    by breaka
    Replies
    11
    Views
    1,577

    writing records

    wy is this program writing Wjonas to the file while input is {1111,"jonas"}

    #include<stdio.h>

    typedef struct persoon {
    int nr;
    char naam[10];
    }PERS;

    int main (void){
  14. Replies
    15
    Views
    2,209

    you re right they do thanx.

    you re right they do thanx.
  15. Replies
    15
    Views
    2,209

    #include int main (void){ typedef...

    #include<stdio.h>

    int main (void){

    typedef struct {
    int nr;
    char naam[20];
    }RECORD;

    RECORD r1={1,"jones"},*p;
  16. Replies
    15
    Views
    2,209

    whats the difference between: &(r.x) and ...

    whats the difference between:

    &(r.x) and &r.x with r identifier of structure cause they print out different adresses
  17. Replies
    15
    Views
    2,209

    its pointer arithmetics that im looking for,...

    its pointer arithmetics that im looking for, notting there realy
    http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1074728813&id=1073086407

    thanx for helping me out anyway
  18. Replies
    15
    Views
    2,209

    i was looking for some generalisation because the...

    i was looking for some generalisation because the faq dont seem to cover this. and sorry if my newb questions aren't interesting to you. Perhaps a link to tutorials on this matter?
  19. Replies
    15
    Views
    2,209

    this is very helpfull so far, thanx. who can...

    this is very helpfull so far, thanx.
    who can add/correct statements that can be usefull with structures

    EMPLOYEE e1; //record
    EMPLOYEE *p; //pointer to record


    p=&e1; ...
  20. Replies
    15
    Views
    2,209

    pointers to structures

    typedef struct {
    int nr;
    char name[21];
    char afd;
    }
    EMPLOYEE;


    void print (EMPLOYEE);
    void get(EMPLOYEE*);
  21. Replies
    6
    Views
    1,395

    of course, thanx for sorting that out

    of course, thanx for sorting that out
  22. Replies
    6
    Views
    1,395

    #include #include...

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

    int invoer (char *tab, FILE *fp);


    int main(void)
    {
    FILE* fp;
  23. Replies
    6
    Views
    1,395

    so if i have pointers in a stack refering to...

    so if i have pointers in a stack refering to individual characters then i do have to derefernce them since i would be using a %c specdifier, right?
    something like *(tab[i])
  24. Replies
    6
    Views
    1,395

    array of pointers

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

    int invoer ();


    int main(void)
    {
    FILE* fp;
  25. Thread: using strchr

    by breaka
    Replies
    3
    Views
    2,289

    using strchr

    trying to print the number of certain letter in a string but code gives general exception
    what to do, what to do... ;)

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

    int main(void)
    {
    char...
Results 1 to 25 of 46
Page 1 of 2 1 2