Programming/C: Difference between revisions

From Dev Wiki
Jump to navigation Jump to search
(Create page)
 
m (Brodriguez moved page C to Programming/C)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{ Note | Common File Extensions: {{ ic |.c}} {{ ic |.cu}} {{ ic |.h}} {{ ic |.o}} {{ ic |.obj}} }}
C is a general-purpose language meant to be powerful and fast.<br>
C is a general-purpose language meant to be powerful and fast.<br>
A considerable amount of "high level" languages are built off C.
A considerable amount of "high level" languages are built off C.

Latest revision as of 03:57, 21 April 2023

Note: Common File Extensions: .c .cu .h .o .obj


C is a general-purpose language meant to be powerful and fast.
A considerable amount of "high level" languages are built off C.

Unlike most high level languages, C allows direct access to memory and pointers, which can make the syntax more complicated, but gives more control to the programmer in how it behaves.

For a similar language, see C++.


Setup


Syntax


Testing