C is a general-purpose programming language used for system programming (OS and embedded), libraries, games and cross-platform.
What's the difference between: char * const and const char *
c pointers constantsI'm using Eclipse Helios on Ubuntu 10.04, and I'm trying to install CDT plugin on it. I download it from here …
c++ c eclipse eclipse-plugin eclipse-cdtI downloaded the source code and wanted to compile the file of scanner. It produces this error: [meepo@localhost cs143…
c gcc lexI'm trying to make a simple fibonacci calculator in C but when compiling gcc tells me that I'm missing the …
c gcc undefined-referenceI wish to calculate the time it took for an API to return a value. The time taken for such …
c++ c timerIs there any way to achieve function overloading in C? I am looking at simple functions to be overloaded like …
c overloadingHow does one determine where the mistake is in the code that causes a segmentation fault? Can my compiler (gcc) …
c++ c debugging segmentation-faultI want to write the full contents of a file into a buffer. The file actually only contains a string …
c file-ioI got this problem from an interview with Microsoft. Given an array of random integers, write an algorithm in C …
c algorithm arrays duplicates