Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c

What does the fdim acronym stand for?

c math floating-point acronym

Just started learning C this semester, but I can't seem to understand what the professor wants from us in this question

Facing a difficulty in a bubble sort algorithm in C

"#define" vs "#define 1"

c++ c include c-preprocessor

How to handle malloc failing and returning NULL?

Optimize nested loops for pattern-filling an array, to help the compiler produce efficient ARM assembly?

Efficiently print every x iterations in for loop

c performance hpc

What int (*ptr)[4] really means and how is it different than *ptr?

Why is /=2 different from >>=1 for signed integers, and compiles to different asm?

Why a*b/c instead of a*(b/c) gives 3x bigger program size on AVR?

c assembly gcc avr atmega

C printf: Is there a way to add text after variable and before spacing?

c printf

Getting list of PIDs from /proc in Linux

c linux pid procfs

What is the size of /proc/%u/fd/%u

c linux

What could be the benefit of such a complicated function to test if variable is not zero?

Is it safe to do something like foo(x, &x)?

Approximating cosine on [0,pi] using only single precision floating point

Suspicious case statement syntax accepted by C compilers

c syntax compiler-errors

Most efficient way to find prime factorization of 2 for a positive integer

c optimization

C %p printing 16 instead of 8 bytes

c pointers printf

Reason why int(*g)(int) into int(*h)(char) causes error?

c++ c