Tagged Questions

free() is the Standard C (ISO 9899:1989) function declared in <stdlib.h> to deallocate memory allocated by a previous call to malloc, calloc, or realloc. On POSIX (IEEE Std 1003.1) systems it is also used to free memory obtained from calls to posix_memalign and strdup. "free" can also be used to refer to questions discussing free software, free books, or other things that can be used without charge.

learn more… | top users | synonyms

2327
votes
108answers
447k views

List of freely available programming books

I'm trying to amass a list of programming books that are freely available on the Internet. The books can be about a particular programming language or about computers in general. What are some ...
678
votes
117answers
38k views

Most useful free .NET libraries? [closed]

I have used a lot of free .NET libraries, some from Microsoft itself! Which ones have you found the most useful? Mathematics Math.NET Numerics - special functions, linear algebra, probability ...
478
votes
81answers
20k views

Where can one find free software icons / images?

This may not be directly related to programming, but I always find it hard to get quality icons that can be used for software. I currently have the need for some type of "green checkmark image", and ...
237
votes
28answers
174k views

Free online private SVN repositories

What good free online SVN repository can be recommended? I found OpenSVN.csie.org, but the message in red is a bit scary.
101
votes
10answers
18k views

Any Good Free .NET Profiler?

Is there any good free .net profiler available?
67
votes
16answers
41k views

Any free WPF themes?

I'm not a designer, so I'm looking for some free WPF themes. Any suggestions?
56
votes
12answers
47k views

What's the best Free C++ Profiler for windows (if there are)

I'm looking for a profiler in order to find the bottleneck of my c++ code. I'd like to find a free, non intrusive, good profiling tool. I'm a game developer and I use PIX for Xbox360, I found it very ...
55
votes
14answers
5k views

What REALLY happens when you don't free after malloc?

This has been something that has bothered me for ages now. We are all taught in school (at least, I was) that you MUST free every pointer that is allocated. I'm a bit curious, though, about the real ...
46
votes
14answers
12k views

Please recommend a Java profiler

I am looking for the Java equivalent of gprof. I did a little Java profiling using System.getCurrentMillis(), and saw several GUI tools which seem too much. A good compromise could be a text-based ...
42
votes
19answers
2k views

Where can I find free and open data?

Sooner or later, coders will feel the need to have access to "open data" in one of their projects, from knowing a city's zip to a more obscure information such as the axial tilt of Pluto. I know ...
36
votes
14answers
8k views

Is there a free version control server provider for non-public projects?

I'd like to have a version control server (preferably SVN) accessible on the internet without having to host my own (linux) server. Setting up a home server ala DynDNS is not really an option. Can ...
32
votes
8answers
3k views

C programming : How does free know how much to free?

In C programming, you can pass any kind of pointer you like as an argument to free, how does it know the size of the allocated memory to free? Whenever I pass a pointer to some function, I have to ...
31
votes
6answers
15k views

Free OCR library

Does anyone know of a good free or cheap (under £100/$200) OCR library? It needs to run on Windows and preferably be a .NET library, though a COM interface is fine.
27
votes
13answers
13k views

Does anyone know of a decent free online bug tracker for web development purposes?

Does anyone know of a decent FREE online bug tracker for web development purposes?
24
votes
8answers
899 views

Where can I get freely available audio, graphics, and other resources for games?

I've done a google search of this topic, but so far haven't found anything satisfactory. From your experience, what's the best place to get game resources, like sprites, backgrounds, sound effects, ...
22
votes
21answers
1k views

Why do people spend so much time searching for, and hacking around with, “free” toolsets when superior pay ones are available?

Clarification: I'm referring to companies that pay developers, professionally. I understand why a "hobby" or "for fun" developer wouldn't want to (or couldn't afford) a fully-features pay tool, and ...
22
votes
13answers
23k views

Best Free Professional Looking UML Tool?

I like the look of the Visual Studio Class Designers, but it doesn't give me the flexibility of designing before I implement the code. Also, I'd like to show interfaces, inheritance, and aggregation ...
21
votes
8answers
1k views

If free() knows the length of my array, why can't I ask for it in my own code?

I know that it's a common convention to pass the length of dynamically allocated arrays to functions that manipulate them: void initializeAndFree(int* anArray, size_t length); int main(){ size_t ...
19
votes
7answers
724 views

What happens to those who break open source license?

What happens if you break an open source license and include a code released under GPL in a closed source project? Can you go to jail? Who will sue you? For what? "Not respecting the will" of those ...
19
votes
12answers
14k views

Flex development on Linux, what's a good free environment?

I would like to develop Adobe Flex applications using Linux and a free environment. I'd prefer a free as in freedom alternative, but as in beer would work as well. ;-) Are any of you developing Adobe ...
17
votes
6answers
1k views

How can I use the paid version of my app as a “key” to the free version?

Let's say for example that I have some Android app that does X. The free version has ads or basic features. I want to have a paid version that removes the ads and adds extra features. How can I use ...
17
votes
16answers
7k views

Good Databases with sample data

Does anybody know of any sample databases I could download, preferably in CSV or some similar easy to import format so that I could get more practice in working with different types of data sets? The ...
16
votes
7answers
5k views

Looking for free GITHUB (enterprise/FI edition) alternative for private installation

Are there any good alternatives for Github Enterprise Edition for a private network? have about 30 dev's and a ton of projects. Moving away from Subversion as well so any methods to keep the history ...
16
votes
6answers
510 views

Howto check if a char* points to a string literal in C

I have a struct struct request { int code; char *message; }; that I'd like to free properly. I have the following function to do that: void free_request(struct request *req) { if ...
15
votes
14answers
3k views

Python 3 IDE for teaching

With Python 3 maturing and slowly gaining adoption, we're taking the plunge and adopting it in our introductory programming classes for kids aged 12-18. Is there a free (preferably open source) IDE ...
15
votes
10answers
329 views

Why is free() not allowed in garbage-collected languages?

I was reading the C# entry on Wikipedia, and came across: Managed memory cannot be explicitly freed; instead, it is automatically garbage collected. Why is it that in languages with automatic ...
15
votes
15answers
3k views

Free Project management software [closed]

The company I work for has some project management issues. It's not that it doesn't work but that I get the impression it could work much better. I'm looking for a good, web-based, project management ...
14
votes
7answers
68k views

Free tool to Create/Edit PNG Images?

Is there any free tool available for creating and editing PNG Images?
13
votes
9answers
906 views

Why doesn't free(p) set p to NULL?

Any reasons why this can not be standard behavior of free()? multiple pointers pointing to the same object: #include <stdlib.h> #include <stdio.h> void safefree(void*& p) { free(p); p = ...
13
votes
13answers
23k views

What's the Best Free Virtual Machine system?

I've messed with Virtual Machine software before and for me it works very well for multi-platform testing. My question is what virtual machine systems out there that are free are available that can do ...
13
votes
2answers
1k views

Any information on a Turbo Delphi 2009 release?

Individually, the Turbo Delphi releases and the new improvements added in Delphi 2009 are two of the best things that have happened to Delphi in a long time. But currently you can only get one or the ...
12
votes
4answers
2k views

Free .net obfuscator?

I'm looking for a good .net obfuscator (for Visual Studio Express Edition) but it has to be free. Any recommendations?
12
votes
7answers
5k views

How do free and malloc work in C?

I'm trying to figure out what would happened if I try to free a pointer "from the middle" for example, look at the following code: char *ptr = (char*)malloc(10*sizeof(char)); for (char i=0 ; i<10 ...
12
votes
5answers
879 views

Do you have to pay for GNU GPL software that is “for sale”?

I've seen some software (a Joomla component, to be exact) for sale on a web site. The web site says it is licensed under the GNU GPL2. However it also says you need to pay for every site you use the ...
12
votes
17answers
800 views

Most useful free php libraries?

What are some of your can't-live-without php libraries? Any kind, collections, templates, anything that makes your life easier when working with php.
12
votes
10answers
3k views

Developing lightweight (no runtime) Windows based GUI applications using free tools

Does anyone know of free tools (languages, environments) that would support development of GUI applications on the Windows platform? I am looking to be able to create a single executable file that ...
12
votes
6answers
262 views

What are good sites for free sounds that developers can use in applications?

So far I have found: http://www.soundsnap.com/
12
votes
14answers
3k views

Free support ticket software

I am searching for a better alternative to osTicket. Can you give any advice? I would want it not to be bloated with features, since I want to be able to use it without having to get into it a lot
11
votes
7answers
571 views

C - Design your own free( ) function

Today, I appeared for an interview and the interviewer asked me this, Tell me the steps how will you design your own free( ) function for deallocate the allocated memory. How can ...
11
votes
4answers
3k views

Best Weather APIs free for commercial use?

What weather services have free APIs for commercial use? Out of the handful or so, which ones are easiest to tie into? Do they use "raw" HTTP requests or web services? Are there wrapper APIs for Java, ...
10
votes
2answers
366 views

Free cross-platform library to convert numbers (money amounts) to words?

I'm looking for cross-platform library which I can use in my C application to convert money amounts (e.g. $123.50) to words (one hundred twenty three dollars and fifty cents). I need support for ...
10
votes
6answers
493 views

How to avoid long chain of free's (or deletes) after every error check in C?

Suppose I write my code very defensively and always check the return types from all the functions that I call. So I go like: char* function() { char* mem = get_memory(100); // first allocation ...
10
votes
5answers
2k views

Will malloc implementations return free-ed memory back to the system?

I have a long-living application with frequent memory allocation-deallocation. Will any malloc implementation return freed memory back to the system? What is, in this respect, the behavior of: ...
10
votes
5answers
10k views

Free Weather API

Are there any free weather APIs for displaying weather in the iPhone application.
10
votes
17answers
11k views

what is the best free windows c++ IDE/compiler [closed]

What is the best free windows c++ compiler, ideally cross-platform. I've tried Bloodshed, Ganymede, EasyEclipse, Visual C++ express. Visual C++ express is the only one I've been able to get the ...
10
votes
4answers
33k views

Free ASP.Net and/or CSS Themes

Where can I get some decent looking free ASP.Net or CSS themes?
10
votes
11answers
8k views

Looking for WYSIWYG HTML editor

Any suggestions for a relatively simple, free, WYSIWYG, HTML editor? I have a friend in need of a art portfolio website and I want to her feet wet without forcing her to learn raw HTML or an overly ...
9
votes
2answers
1k views

List of free WebGL resources

I'd like to put together a list of free WebGL resources. These can include books, in-depth tutorials, video resources, etc. What are some free WebGL resources?
9
votes
5answers
485 views

Taming the malloc/free beast — tips & tricks

I've been using C on some projects for a master's degree but have never built production software with it. (.NET & Javascript are my bread and butter.) Obviously, the need to free() memory that ...
9
votes
15answers
1k views

Free UML Tool for use

Friends could tell me free uml tool for using? I use Argo UML but I don't like it.

1 2 3 4 5 16