The conditional operator ?:, also known as the ternary conditional operator, evaluates a Boolean expression and returns the result of one of the two expressions, depending on whether the Boolean …
programmerdude
-
-
Awesome C++ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny things. Inspired by awesome-… stuff. Awesome C++ Standard Libraries Frameworks Artificial Intelligence Asynchronous Event Loop …
-
There are a lot of great tutorials on youtube for programmers, hours of content. In this article we look at some of our favourites. C programming tutorial A 3 hour …
-
/* *** SYNOPSIS http://nodejs.org/api/synopsis.html *** */ var http = require(‘http’); // An example of a web server written with Node which responds with ‘Hello World’. // To run the server, …
-
A Stack is a type of collection that stores elements in Last In First Out style. C# includes the generic Stack<T> and non-generic Stack collection classes You can use the …
-
A Queue is a special type of collection that stores the elements in a First In First Out style, it is exactly the opposite of the Stack collection. It contains …
-
the ArrayList is a non-generic collection of objects whose size increases dynamically. It is the same as Array except that its size increases dynamically. An ArrayList can be used to …
-
A Tuple is a data structure, and it is useful to store the sequence of elements of different data types. Using a tuple, we can return more than one value …
-
An enumeration type (or enum type) is a value type defined by a set of named constants of the underlying integral numeric type. To define an enumeration type, use the …
-
There are a few C# ebooks available online – here is a list of some of them C# Essentials – C# Essentials contains 28 chapters of detailed information intended to …