1
vote
1answer
43 views

Import own C module in a Python virtualenv (Solved)

I try to import C code into a Python script working in a virtualenv. I manage to link my C code with Python installing a setup.py into python. But when I am in my virtualenv, I can't find my module, ...
-2
votes
1answer
50 views

Issue with printing out linked list [closed]

Ok so I have this code and I'm trying to print the linked list it creates, but I keep getting segmentation fault #include <stdio.h> #include <stdlib.h> #include <string.h> #include ...
0
votes
1answer
81 views

In Solaris, link dynamic library error when using /usr/sfw/bin/gcc

all: I am working on Solaris 10, and meet the following issue: There is ODBC dynamic library in /usr/local/lib: lrwxrwxrwx 1 root root 16 Jun 26 2012 libodbc.so -> ...
2
votes
2answers
67 views

Linked List, Storing in Wrong Order?

I have a question about how my linked lists are being stored. The data is being inputted from a file like 0 1 2 3 4 each number represents a different line of data. The data is not important in this ...
0
votes
3answers
601 views

check palindrome in a SINGLY link list [duplicate]

Possible Duplicate: Single Linked List is Palindrome or not Suppose i have a link list having a char item,i need to find if the characters in that link list is a palindrome or not. I know ...
5
votes
3answers
397 views

Mid point in a link list in a single traversal?

i m trying to find the point of a singly link list where a loop begins. what i thought of was taking 2 pointers *slow,*fast one moving with twice the speed of other. if the list has a loop then at ...
4
votes
2answers
99 views

Is a compiler bug, or c language features?

My Environment is windows xp sp3 + 'Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14.00.50727.762 for 80x86', Process is as follows: F:\workshop\vc8proj\console>type t.c int main(void) ...
0
votes
1answer
54 views

Using filepath as a hyperlink in HTML

I Wonder whether I can use pdf Source[as hyperlink] as a file path in system related to script's running directory. part of code is. <a href="../pdfs/sample.pdf">pdf</a> I am ...
3
votes
1answer
2k views

undefined reference to `gzopen` error

My C program uses some zlib functions (like gzopen, gzread). I have included the zlib.h header file in my program and added the -lz option when compiling, but I still get an error that the gz ...
0
votes
2answers
147 views

Web crawler type program - wiki degrees of separation

I got an interesting little side project inspired by today's xkcd tooltip. Basically the premise is that for any Wikipedia article, if you follow the first link (that is not inside brackets or in ...