Search:

Type: Posts; User: Ashfaqur Rahman

Search: Search took 0.01 seconds.

  1. Understood! Thanks for the help. :)

    Understood! Thanks for the help. :)
  2. Thanks for your reply. But still i am unable to...

    Thanks for your reply. But still i am unable to find error!

    Initially:

    root is not NULL
    root->next is NULL

    list_insert(root, 5) is called:
  3. Linked List - Wrong output, but can't find any error!

    Here is my simple singly linked list implementation. By the given data it should output 10 5 6. But it's outputting only 10.



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

    struct node {
    int...
  4. Replies
    2
    Views
    2,593

    How To Run C Programs In Ubuntu?

    I am using code::blocks Compiler.
    If I Run Any Program From Codeblocks Xterm Showing Following -

    "sh: 1 : /home/username/Desktop/cp: Permission Denied"

    How Can I Run Any Program On Ubuntu?
    I...
  5. Replies
    5
    Views
    1,335

    Thank You both. I have found whats wrong. In...

    Thank You both.

    I have found whats wrong.
    In line 29 scanf("%c",&cmd) statement execute when if(ch==10) become true and take input.At the time of taking input when I input Y or N and hit enter I...
  6. Replies
    5
    Views
    1,335

    Cant Figure Out Whats Wrong!

    The Objective Of This Program Is To Create A File To Write Text And Read Back The File Content.
    To Do That I Have Made Two Function writeFile() To Write And readFile() To Read.The readFile()...
  7. Replies
    4
    Views
    1,079

    Thanks. This Is What I Need.

    Thanks.
    This Is What I Need.
  8. Replies
    4
    Views
    1,079

    First of all i have used binary mood cause if i...

    First of all i have used binary mood cause if i used text mood functions like fgets() or fscanf(), i have to use array to catch string from file but i want to make my program dynamic so that it...
  9. Replies
    4
    Views
    1,079

    Cant Figure Out File I/O Error!

    Objective of this program is to read binary data from a file and print it.



    #include <stdio.h>


    void readFile(void);
Results 1 to 9 of 9