Where to download the open source language of C? [closed] - c

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I want to learn how C is interpreted,
anyone knows where to download it?

http://www.thefreecountry.com/compilers/cpp.shtml
I found that in about 10 seconds using Google. You can too.

A good basic compiler suitable for getting an intro to the subject and including sources is tinyc. It is capable of being used in a similar manner as an interpreter, too (unlike GCC et al).

http://gcc.gnu.org/releases.html

Try this:
http://en.wikiversity.org/wiki/C
and this:
http://gcc.gnu.org/

Related

Example code for blowfish encryption [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I need to encrypt a char* string in C using blowfish or twofish in Windows.
I can't find a straight forward solution for that.
I don't want to install something like OpenSSL; I need it be a standalone as possible.
Unfortunately Googling for C code results in C# and C++ code.
Can anyone give me a straightforward function for encryption/decryption?
Have you taken a look at "https://www.schneier.com/twofish-download.html" on Bruce Schneier web site? He has reference implementations, as well as optimized implementations of the algorithm. It's been a few years since I looked at it, but you might find it useful.

face recognition using c library in linux [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have to know about face recognition library in linux. I want to do face recognition using c language in on linux plate-form. I don't want to use MATLAB. If you know any web site,library or book then please inform me. Thank You
The OpenCV can help you. See here
Download Opencv for Linux by following the link. Read the documentation provided ,it has API's to perform Image processing .

where can I learn linked list/stacks? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
As the question stated above, is there any recommended sites to study them??
I've searched online, but mostly give the entire code without teaching what the code does
for example, what does -> do??
btw: I wanna learn these 2 which are for C Programming
These links will help. There is other good stuff at the site as well. And it is C oriented.
http://cslibrary.stanford.edu/103/
http://cslibrary.stanford.edu/102/

Please, help to find source with examples by glib [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I've looked for a lot of sites but didn't find any examples by glib. I've seen only discription types and functions...
Perhaps do you know a good source?
PS. Thanks for your answers! =)
Here's a tutorial, a little old but still applicable: http://www.ibm.com/developerworks/linux/tutorials/l-glib/
Here's a tutorial on the GObject part of GLib: http://www.arbingersys.com/2009/07/missing-gobject-tutorial-sample.html
Also check out the excellent book 'Foundations of GTK Development' by Andrew Krause, it has a chapter on GLib: http://www.gtkbook.com/
The tests from the glib source code may be usefull!You should try those!

Where Can I find a good tutorial for IJG libjpeg [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I need to do some work with this library and I'm finding the documentation at http://apodeline.free.fr/DOC/libjpeg/libjpeg.html to be deficient (incomplete function signatures, etc). Does anyone know of some other sides or have some example code illustrating common tasks?
[Edit]
I also found this question with an example, but any others would be helpful.
Try using libjpeg library. Example how to use it is in this blog.
I don't know what you're using, but we use the C++ wrapper at Smaller Animals Software, and we're happy with it. If nothing else, it might work as example code.

Resources