Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

Inline assembly in C not working properly

c assembly

tangled syntactic bit in C

c pointers syntax

How to find dynamically loaded modules (the static ones) programatically in windows

c++ c windows

Segfault when I delete an object - GDB says in free()

c++ c memory memory-management

Pushing a 1-D array onto a 2-D array in C

Return a result from a MySQL query in a function after closing connection in C

mysql c

Inserting a value for an array using malloc [closed]

c arrays malloc

Calling GTK_MAIN under Pthread(secondary thread) in C code

c gtk glib

how to portably get the buffer size of a file stream?

c stdio

Difference b/w exec( ) and system( ) in unix

c unix system exec

return statement in macro(#define) in C

c

String tokenizer without using strtok()

c pointers tokenize

C - named pipe for multiple forked children

c fork pipe named-pipes

Finding a all the combination of a number for a specific sum

c++ c algorithm

How to put H264 encoded data, inside a container like .mp4 using libAV libraries (ffmpeg)?

Where can I declare global variable in c program , whether in header or source file [duplicate]

c global-variables

Does Android C has better performance comparing to Java? [closed]

java android c jvm

How to use the "pcap_lookupdev()" in libpcap?

c linux libpcap

Listing all permutations of digits without repeating in C language [duplicate]

c permutation

Best practices to use assert and printf together

c