Search:

Type: Posts; User: rivkyfried1

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    19
    Views
    5,690

    wondering if i should install linux as my...

    wondering if i should install linux as my operating system since flp1969 said that the code that he suggests works in linux.
    does anyone have any thoughts on that?
  2. Replies
    19
    Views
    5,690

    THanks, christop. I already tried using unicode...

    THanks, christop. I already tried using unicode codepoints.
    it doesn't work. I have no idea where to go from here.
  3. Replies
    19
    Views
    5,690

    I think my issue is being caused by my compiler....

    I think my issue is being caused by my compiler. I entered my code into an online C compiler called, Online GDB, and the code compiled correctly.
    The special characters were displayed correctly in...
  4. Replies
    19
    Views
    5,690

    can anyone explain how to use UNICODE codepoints...

    can anyone explain how to use UNICODE codepoints (referenced in flp1969's first post)?
  5. Replies
    19
    Views
    5,690

    thanks for suggestion, christop. I just tried...

    thanks for suggestion, christop. I just tried what you suggested, but it did not work.
    i changed the lines of code to:

    wchar_t ngsound = L 'ŋ';
    wprintf (L"%lc\n", ngsound);


    in the output -...
  6. Replies
    19
    Views
    5,690

    john c. - thanks for your response. WHen I try...

    john c. - thanks for your response.
    WHen I try single quotes, the program runs, but there is no output as a result of the wprintf.
    Just to be more clear, as a result of your comment, I changed the...
  7. Replies
    19
    Views
    5,690

    sorry - there was a typo in the error message....

    sorry - there was a typo in the error message.
    THe actual error message was, '[Error] invalid conversion from 'const wchar_t* to 'wchar_t' [-fpermissive]

    Sorry about that.
    If you can help out...
  8. Replies
    19
    Views
    5,690

    flp1969- thanks for your suggestion. I tried...

    flp1969- thanks for your suggestion. I tried implementing it by doing the following:
    a) I added the wchar.h header;
    b) I added setlocale (LC_ALL "");
    c) i added:
    wchar_t ngsound = L "ŋ"; ...
  9. Replies
    19
    Views
    5,690

    using Windows operating system

    Thanks for your responses?
    I am using Windows.
    Can you tell me how I can input unicode characters in Windows?
  10. Replies
    19
    Views
    5,690

    International Phonetic ALphabet in C

    Hi, I need to use characters from the International Phonetic Alphabet in my c program. More specifically, I need to save characters from this alphabet into arrays that are used in the program so that...
  11. Replies
    4
    Views
    1,511

    Arrays were declared as such: char...

    Arrays were declared as such:



    char irregverbs [10][94];
    char irregverbspast [10][94];
  12. Replies
    4
    Views
    1,511

    loading 2 character arrays in a row

    I am having a strange problem. I am attempting to load two character arrays in a row. The program then sends one of the arrays to a function called binarysearch. The code looks like this:


    ...
  13. Replies
    12
    Views
    4,895

    No problem! Thanks for your help!

    No problem! Thanks for your help!
  14. Replies
    12
    Views
    4,895

    Thanks for your help. Thankfully, it now works....

    Thanks for your help. Thankfully, it now works. Here is what I did:



    Protocall:
    int binarysearch(char data[][21], int n, char *newitem[][21], int positionofnewitem);

    Call to function:...
  15. Replies
    12
    Views
    4,895

    Thanks for your suggestion. I tried to modify the...

    Thanks for your suggestion. I tried to modify the code so that the function looks like this:




    Protocall:

    int binarysearch(char *[], int, char *);
  16. Replies
    12
    Views
    4,895

    the function is the part that the program crashes...

    the function is the part that the program crashes on:

    In the following lines, I will include the protocall before the main program, the call to the function, and the function itself after the main...
  17. Replies
    12
    Views
    4,895

    I didn't get any of these error messages. The...

    I didn't get any of these error messages. The reason you got them when the program ran, is because the code that i sent was an excerpt from my program. My program is 1000s of lines long. I couldn't...
  18. Replies
    12
    Views
    4,895

    binary search

    I am trying to write a function which performs a binary search. A two dimensional character array will be sent to the function as a first parameter. The second parameter is an integer and gives the...
  19. here is the code. i am using a c compiler...

    here is the code. i am using a c compiler provided by the Code Blocks program.



    tensecomp = strncmp (past, tense, 2);
    verbcount = count;

    strncpy (filename2, username, length);
    strcat...
  20. output file is a unicode file under certain circumstances

    My program creates an output file based on the user's input. The user enters a pronoun, and the pronoun gets placed into the output file. Each time the program runs, the user enters additional...
  21. Replies
    2
    Views
    1,731

    truncating a file to 0 length

    Is there a way to truncate a file to 0 length in C?
  22. Replies
    2
    Views
    2,852

    THANK YOU! I just changed my inner loop variable...

    THANK YOU! I just changed my inner loop variable to j and k, and it's working beautifully!
  23. Replies
    2
    Views
    2,852

    can't get loop to increment

    the code below is part of my program. For some reason, I can't get the outermost for loop to increment. the outermost loop - for (i=1; i < file_len_suffix+1; i ++){ does not get incremented. what did...
  24. Thanks! I found the exe file on my computer. Wow,...

    Thanks! I found the exe file on my computer. Wow, that was nice and easy! THANKS!

    The operating system that I am using is Windows XP. My program asks the user to provide nouns, verbs, and other...
  25. appearance of program, how users can run a progam without going near my code

    I wrote up a program in C (Code Blocks 10.05), and it runs. I run it by hitting F9 when I am in CodeBlocks. The little black window opens and the user is prompted for input. I am hoping that several...
Results 1 to 25 of 27
Page 1 of 2 1 2