Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Doubly Linked list vs Multi-linked list in C/C++ [closed]

c++ c data-structures

undefined reference to `_imp__SetupDiGetClassDevsA@16' (even with -lsetupapi)

c++ c mingw

Why are some format specifiers unavailable in strftime in Visual Studio 2010?

Lua C API: setting error source information

c lua c-api

Padding error - when using AES Encryption in Java and Decryption in C

java c encryption

Why this atof() returns 0.0 for non-0.0 string numbers?

c floating-point atof

New segmentation fault with previously working C code

Can't write int to file using fwrite

c fwrite

Modifying a char *const string

Check diagonally winner in Connect N using C

c

Mutex locking numerous times

WSTOPSIG(status) == 22 & WTERMSIG(status) == 9; Where do these numbers come from?

c fork waitpid

Hash Function in C giving a negative number

c hash hashtable

callee allocates callee frees

Assigning array of strings to char **

Recursively removing duplicate characters in a string

How to separate debug symbols from a C static library and later load it in GDB

What is the diffrence between char *str="this is a string" from char *str = strdup("this is a string") in C