BlogHide Resteemsdebuglove (29)in chmod-perl • 3 years agoExplicando a função CHMOD - Perldebuglove (29)in python • 3 years agoPython - Finding The Largest or Smallest itens in a collectiondebuglove (29)in regex • 7 years agoVideoSorry reformulating contents of my post...debuglove (29)in what • 7 years agoWhat kind of specimen is thisI found this snake type animal in my garden. It has around 80 cm to 1meter. Does anyone knows it? Is it poisounous?debuglove (29)in remove • 7 years ago[Deleted][Deleted]debuglove (29)in dynamic • 7 years agoDynamic Memory Allocation in CDynamic 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…debuglove (29)in structs • 7 years agoStructs and Unions in CIn 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…debuglove (29)in string • 7 years agoStrings in CAs 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…debuglove (29)in arrays • 7 years agoArrays in CArrays 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.…debuglove (29)in pointers • 7 years agoPointers in CPointers 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…debuglove (29)in working • 7 years agoFunctions in CIntroduction 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…debuglove (29)in code • 7 years agoChanging and controlling code flow in CC 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…debuglove (29)in operations • 7 years agoOther types of variables operations and operators in COther types of variable operations Hexadecimals and octals You may assign integer data types hexadecimal or octal values. To work with hexadecimals you must start the number starting with the…debuglove (29)in scope • 7 years agoA little about scope in CLocal and global variables Local variables are variables which exists as long as the code block you are in is being executed. When this same code block ends, these local variables are removed from…debuglove (29)in constants • 7 years agousing constants in CIn certain occasions, in C, or any other programming language, you may need to use variables which must mantain its value trough all the flow of your code. Lets take a look in a few ways you can do…debuglove (29)in c • 7 years agoC basic Data TypesC programming language has four basic data types. All other types are derived from combination of these. Those basic types are: integers, floating point values, pointers and aggregate types like…debuglove (29)in c • 7 years agoC second introduction classFollowing our last thread we will continue with a small code so you can format better your text and write well documented code. -Escape Sequences: In our last example lets suppose we would like…debuglove (29)in old • 7 years agoHave you seen this Coca-Cola to-go-cup beforeI was wondering if any of you have seen this big cup before. Im almost sure it is from the 80s. If you have any clue and would be kind enough to give me a tip. Big thanks.debuglove (29)in c • 7 years agoA small introduction to COn my first thread i was thinking which subject would i start. Sure there are more basic concepts to research, but due the fact they could be a little abstract to a first thread, and also to a first…debuglove (29)in my • 7 years agoMy first postThis is my first post on steemit. I love programming so i was thinking about writing a little about it and about what i know.