bug
@debuglove
·
Video
Sorry reformulating contents of my post...
4th Street Bar
Hive-Bar
Browse freely. Sign in only when you want to participate.
Hive-Bar · Powered by Hive · beta-fdb5b5b
Hive profile
@debuglove
Sign in with Hive Keychain to follow this account.
Sorry reformulating contents of my post...
I found this snake type animal in my garden. It has around 80 cm to 1meter. Does anyone knows it? Is it poisounous?
[Deleted]
# Dynamic memory allocation As a compiled language, in normal situations your datatypes will be evaluated when your program is being compiled. However, we can also assign values to our datatypes whil…
In previous threads, we have seen how arrays can contain more than one valoue in one container. However, arrays can only contain values of the same datatype. In C, we can store values of different da…
As we saw in the lasth thread, strings are stored in arrays of chars in C programming language. It is also possible to store them as string literals, but those are immutable, unlike arrays. The chara…
# Arrays Arrays are a collection of the same datatype which can be acessed through the same variable.This variable can have one or more slots and each member can be acessed through each slot number.…
## Pointers Pointers are at the heart of C. They are one of the main reasons why many people tend to work at C instead of a higher level programming language. They provide fast and efficient acess to…
# Introduction Functions are independent blocks of code, which may be called any time. By having a independent block of code, it is possible for you to reuse it just by calling instead of rewriting y…
C has a few native statements to control the flow of your code within the program, instead of just piling up instructions one after another. Some may argue about other statements which i do not prese…