Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Why doesn't the use of strictly conforming programs and conforming implementations ensure absolute portability?

Bit manipulation of integers depending on endianess

Build dynamic program list with autotools

c autotools autoconf automake

What is the Opaque in this code?

c types

Power function giving different answer than math.pow function in C

c pow math.h

How to see the instructions inside of compiled language executable files?

c executable

memory allocation of character in c and java

java c string

reading from a file and printing double ratios in C

c scanf

UNIX: What should be Stack Size (ulimit -s) in UNIX? [closed]

c++ c multithreading unix

Can strnlen be implemented with memchr?

c string posix

Is it undefined behavior to cast from a struct with a flexible array member to an otherwise identical one without?

c struct c99

Is there a standardized way to parse command line arguments in C?

c linux command-line posix

Can drand48() ever return 1?

c random posix

if-else condition in C

c if-statement

VS2010 C code - String pooling

How can I get how many bytes sscanf_s read in its last operation?

c scanf

Side effects of exit() without exiting?

c++ c