Search:

Type: Posts; User: Bull

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    1,672

    this might help a little, it will convert a...

    this might help a little, it will convert a string to a long, extracting only numbers and leaving everything else out:


    long stringtolong(char tempstr[])
    {
    long templong=0;
    int counter;
    ...
  2. Replies
    6
    Views
    2,847

    something like this will probably work fine: ...

    something like this will probably work fine:


    int spaceplace,counter=0,printcounter=0;
    char sentence;


    ....
    ....
    while(couner<strlen(sentence))
  3. Thread: change text

    by Bull
    Replies
    17
    Views
    3,971

    You could always encode the test using an...

    You could always encode the test using an exclusive or statement though its not too secure unless every value you use to encode with is different, ie:


    char password[10];
    char text[50];
    char...
  4. Replies
    5
    Views
    2,941

    ok we'll if I understand it correctly you want to...

    ok we'll if I understand it correctly you want to keep 1 pointer which will point to the front of the list and one to the very last one. Probably easiest way would be slight modification from my last...
  5. Replies
    5
    Views
    2,941

    ok linked lists are kinda easy to do if you write...

    ok linked lists are kinda easy to do if you write it on a piece of paper using a box to represent each item in a linked list and arrows representing the pointers in them, ok assume you have a linked...
  6. Thread: ? on Array

    by Bull
    Replies
    3
    Views
    1,171

    dont you mean you got some homework off the...

    dont you mean you got some homework off the teacher and you want someone to write it????. For anyone to help you need to atleast put in a bit of effort and show some code of your own and specific...
  7. Replies
    8
    Views
    2,082

    how can you programming on not know what this is?...

    how can you programming on not know what this is?
    My guess is that you opened a data file of some sort, all this is, is hexadecimal, every program, character, whatever is made up of 1's and 0's, 256...
  8. Replies
    2
    Views
    1,378

    %i just signafies that a variable is in the place...

    %i just signafies that a variable is in the place of the %, so %d means an integer, so if you wanted to output to the screen someones name and age from variables you would do something like:
    ...
  9. Thread: Atoi & Itoa

    by Bull
    Replies
    2
    Views
    10,625

    atoi converts a string to an integer, put a...

    atoi converts a string to an integer, put a strings pointer and it returns an int:
    Declaration: int atoi(const char *s);

    itoa convets an integer to a string:
    Declaration:
    _ char *itoa(int...
  10. Replies
    8
    Views
    986

    I'm not sure of your question but heres a bigger...

    I'm not sure of your question but heres a bigger example, hope this helps:



    int main()
    {
    int money=5;
    char name[5];
    int average=15;
  11. Replies
    12
    Views
    1,421

    can you just have 2 structures, then when you...

    can you just have 2 structures, then when you traverse through the list for example in your search, dont pass the pointers memory address, just pass the value of the pointer (address of the first...
  12. Thread: History Lesson

    by Bull
    Replies
    6
    Views
    1,062

    I've done a bit of asm, but dont think they...

    I've done a bit of asm, but dont think they actually specify where the first pc program was made and how, that kind of thing, I asume that it was more of an upgradable thing, pc's originally where...
  13. Thread: struct

    by Bull
    Replies
    4
    Views
    1,010

    personally i use the example from B, however i...

    personally i use the example from B, however i would do something like:


    struct node
    {
    int number;
    } NODE;

    the advantage of putting the node bit at the end is that to create a new...
  14. Replies
    3
    Views
    2,560

    you've already asked this exact same question...

    you've already asked this exact same question with much less information this type yet the question is still extremly trivial, how is it a dictionary if you have a meaning for "an", how about posting...
  15. i disagree c++ is much worse to teach than c. If...

    i disagree c++ is much worse to teach than c. If you try to teach them c++ then you'll also have to teach them about classes and all the other things that c++ is good for. The best language to teach...
  16. Thread: Font Color

    by Bull
    Replies
    20
    Views
    4,084

    hmm not sure works fine for me, umm try to make...

    hmm not sure works fine for me, umm try to make sure that the directory to your include is set in your c:\autoexec.bat file, if its not then add it in, something like this at the end will do it
    ...
  17. Thread: Font Color

    by Bull
    Replies
    20
    Views
    4,084

    can u paste an example of your code.

    can u paste an example of your code.
  18. Thread: Font Color

    by Bull
    Replies
    20
    Views
    4,084

    I'm guessing your compiler or version of conio.h...

    I'm guessing your compiler or version of conio.h doesnt support textcolor, if you have a look or do a file search for anything that contains the words color or colour, then maybe you might find...
  19. Thread: Font Color

    by Bull
    Replies
    20
    Views
    4,084

    i dont understand, it is simply those commands so...

    i dont understand, it is simply those commands so if you wanted the text to be red you'd do:

    [code]
    #include <conio.h>

    int main()
    {
    textcolor(3);
    cprintf("\nTHIS TEXT IS RED\n");
    ...
  20. Replies
    11
    Views
    18,622

    just clear the screen before displaying any menu:...

    just clear the screen before displaying any menu:

    in dos:
    clrscr();
    or
    system("cls");

    in unix:
    system("clear");
  21. Thread: Font Color

    by Bull
    Replies
    20
    Views
    4,084

    if your doing it in a borland compiler you can...

    if your doing it in a borland compiler you can use the command
    cprintf (contained in the conio.h file) and use something like:
    textcolor(7);
    and
    textbackground(0);
    to change the color of the...
  22. Thread: Save Load....

    by Bull
    Replies
    2
    Views
    1,106

    if your talking about a file, then you basically...

    if your talking about a file, then you basically have to have all the information that you want to save in variables and then you can use one of many different file outputs or inputs, just do a...
  23. Replies
    6
    Views
    10,837

    do a search for linked list's. Using linked...

    do a search for linked list's. Using linked lists, you will be able to assign the memory as you use it to a maximum amount, which means you wont waist anything. Makes the program a little tricker to...
  24. Thread: Calc Problem.

    by Bull
    Replies
    4
    Views
    1,150

    umm the reason your program is crashing is...

    umm the reason your program is crashing is probably because your not saving the read in int, double whatever using the memory address, you've got:


    main()
    {
    float first,second,exit,equal;
    ...
  25. Thread: function

    by Bull
    Replies
    3
    Views
    1,764

    umm all looks pretty alright to me except you...

    umm all looks pretty alright to me except you have your end of line chars the wrong way, it should be \n not /n. what exactly is the problem with the program?
Results 1 to 25 of 95
Page 1 of 4 1 2 3 4