Search:

Type: Posts; User: cnnx

Search: Search took 0.00 seconds.

  1. Thread: Help with C code

    by cnnx
    Replies
    10
    Views
    714

    Local console is fine, its via syncterm the...

    Local console is fine, its via syncterm the backspace key is not being intercepted and replaced by backspace.
  2. Thread: Help with C code

    by cnnx
    Replies
    10
    Views
    714

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

    #include <stdio.h>

    int main(void)
    {
    char username[16],ch;
    int i=0;
    printf("\nUsername:");

    while(1)
    {
  3. Thread: Help with C code

    by cnnx
    Replies
    10
    Views
    714

    I've added the check, it no longer does a...

    I've added the check, it no longer does a segmentation fault but also doesn't print the username with the printf statement. Is this because I'm using curses.h?



    #include <stdio.h>
    #include...
  4. Thread: Help with C code

    by cnnx
    Replies
    10
    Views
    714

    Help with C code

    I have the following code:


    #include <stdio.h>
    #include <curses.h>

    void main(void)
    {
    char username[15],ch;
    int i=0;
Results 1 to 4 of 4