Conformance as defined by the c standard is two parts : conformance of a program and conformance of an implementation .

Concerning the conformance of a program , a c program can either be : strictly conforming or conforming . As for the conformance of an implementation it can be either hosted or freestanding .

what is conformance c , featured image 228 by 228

The limits.h header was defined as part of the c89 standard .

It contains the min and max limits that integer types can have on a certain machine . It also defines the number of bits in a char , and the maximum number of bytes in a multibyte characters .

limits.h header in c a tutorial , featured image 250 by 235

There are three kinds of integer literals in c . They are the decimal , octal and hexadecimal .

The Integer literals can be of the int , long , and long long type , and they can be either signed or unsigned .

integer literals in c , featured image 239 by 208

The sizeof operator returns the size of an expression or of an object type in c .

The value returned by the sizeof operator is of type size_t .

This article will explain what is the sizeof operator , what is its return type and it will give examples of how to use it and where it can be applied.

what is the sizeof operator in c, featured image 238 by 254

__func__ is a predefined identifier . It was defined as part of the c99 standard , and it is used to get the name of a function.

What is __func__ in c, featured image 284 by 228

Comments in c can be written in two ways , this tutorial will teach how to write comments in c .

Comments in c , featured image 232 by 148
« Previous Next »