Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

About OpenCV coordinates

c opencv coordinates

Does the forward declaration need to be identical to its counterpart in the definition?

c forward-declaration

C- Setting a array of structs to null

Is it possible to read the TTL IP header field when receiving UDP packets?

c sockets unix

How to get a larger random number from the c function rand()

c random

Function using a local static variable thread safe/reentrant [closed]

c linux thread-safety

More efficient way to write if-conditionals with repetitive variable

Template function to print a Thrust vector

c templates cuda gpgpu thrust

For iterating though an array should we be using size_t or ptrdiff_t?

Is malloc(sizeof(char[length])) incorrect?

arrays c memory malloc

Using bit fields within a single byte

c bit-fields

GCC : Return statement from a void function in C

c gcc void

Looking one char ahead when reading from file in C

c file loops

Converting 4 raw bytes into 32-bit floating point

What is the difference between *a=b and a=&b?

c pointers

How void pointer arithmetic is happening in GCC

Typecasting a function pointer

Where can I find the real memcpy() implementation?

c memcpy

How can I compute `exp(x)/2` when `x` is large?