Search:

Type: Posts; User: AsmLover

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    1,236

    ok, i decided to change my encryption algorithm...

    ok, i decided to change my encryption algorithm and i'm trying to use a basic rot13 function.......here we go


    #include <stdio.h>
    char filen;
    char rot(char ch);
    main(void)
    {
    FILE *fp;
    char...
  2. Replies
    5
    Views
    1,236

    Binary Convertor Function

    I havn't programmed in ages and need some help plz, i needa write a function that scans all the characters in a text file and converts the characters into binary with this form of 8 digit format like...
  3. Replies
    15
    Views
    3,021

    i think he was just trying to imply feel in that...

    i think he was just trying to imply feel in that for w/e the buffer size should be.....my guess, i was messing around just now with the weakness's of gets() and i used this code

    ...
  4. Replies
    15
    Views
    3,021

    this may be my compiler again but should...

    this may be my compiler again but



    should be
    if(fgets(word, sizeof(word), stdin, != NULL) {
    i believe
  5. Replies
    15
    Views
    3,021

    haha, yea Miracle C is no Miracle, the debugger...

    haha, yea Miracle C is no Miracle, the debugger doesn't help me at all :(, well i used to have linux on my system so i used GCC, what would you reccomend for xp?
  6. Replies
    15
    Views
    3,021

    when i try and compile your code it says but...

    when i try and compile your code it says

    but my code works perfectly when i compile it :), that's odd
  7. Replies
    15
    Views
    3,021

    i don't know if this exactly what you want but it...

    i don't know if this exactly what you want but it takes a input and prints it 10 times --you can replace gets with fgets() if ya want



    #include <stdio.h>
    int main()
    {
    int word,i;...
  8. Replies
    12
    Views
    6,095

    int add(int addx, int add_y); I believe you...

    int add(int addx, int add_y);

    I believe you want that first variable to be add_x.
  9. Replies
    3
    Views
    2,210

    Is this code good?

    I'm really new to C and was wondering if you guys could help me find maybe a better or more efficent way of writing the code i just made, it's a program that'll take input from the user in the format...
Results 1 to 9 of 9