Beginner C programs [closed] - c

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Does anyone know of a list of C programs that can be practised by beginners?

Hi you can use something from here http://www.simonhuggins.com/courses/cbasics/index.htm
but i can recomend you this book http://www.computersciencelab.com/Deitel.htm there are lot of samples

Sphere Online Judge has a ton of problems at many difficulty levels. The neat thing is you can submit them after you're done to have the server run the program and tell you if you got the right results or not.
http://www.spoj.pl/problems/classical/
Explanation of the different categories of problems:
http://www.spoj.pl/tutorials/USERS/#choose

Related

Simple Face Detection Recourses [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am looking for a way to start detecting faces in an image.
Any recourses that you use or find best for beginners?
Thanks.
Generally there are at least two approaches.
Finding a face based on the color (e.g face color and hair color)
Based on characteristics of the face (we have two eyes, and a nose below etc.)
Try this page that describes basic techniques of face detection

Getting the number of CPU cores using only C standard library? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I was asked this during an interview, and I wasn't able to come up with an answer.
The idea is to write a program using only the C standard library, and find out how many CPU cores the box has. The solution needs to be platform independent, and using external libraries or system calls is not allowed.
Does anybody have experience with this? Thanks!
Thanks everyone who participated. I think now it seems like the answer will be "there's no reliable way of doing this." Great discussions guys!

Size of Compiler [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I was exploring a bit on compilers.I had a question in my mind.I wanted to know whether,
C-Programming language provide*any programing function* to know the size of compiler being used?
I think it's safe to say "no". There isn't necessarily a meaningful answer -- it's entirely possible to build a single program with code from two (or more) different compilers.

Collabrative Embedded C programming projects [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Looking for embedded C projects where I can work with group or individuals. My goal is to keep skills current while honing and learning new skills and techniques.
You could try using Arduino, it seems to have a big community worldwide.

How to use and edit Windows exceutable resources from C? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Can anyone tell me how to add a Windows string resource?
How to read it?
And, lastly, code for another C program to edit that resource.
thanx a lot in advance...hope you guyz don't laugh ..;)
Assuming that you are talking about Windows resources inside of executables, see this:
http://www.codeproject.com/KB/cpp/dynares.aspx

Resources