Elon Musk: New Self-Driving Features Will Come Out This year

No Hands! According to a tweet by Tesla CEO Elon Musk, the electric car company is going to “release more [Full Self-Driving] features later this month.” While Musk hasn’t confirmed what these features will turn out to be, we can make some educated guesses — and it might even be the long-awaited “City Autopilot” feature. FSD … Read more

Hackers Are Using Coronavirus Maps to Spread Malware

Malware Outbreak Coronavirus outbreak dashboards — like this one, created by John Hopkins University — have become an extremely useful way to keep track of how the deadly virus is spreading across the globe. But hackers are creating fake coronavirus maps to infect users with malware. Doppelganger Security researcher Shai Alfasi at Reason Labs discovered … Read more

Microsoft, Ubisoft move to digital events after E3’s cancellation

On Wednesday, the Entertainment Software Association (ESA) canceled the Electronic Entertainment Expo — better known as E3 — over concerns regarding the spread of COVID-19, the novel coronavirus. The World Health Organization officially declared COVID-19 a pandemic on Wednesday. The ESA said it’s “exploring options with our members to coordinate an online experience to showcase … Read more

Google’s G Suite Cracks 2 Billion Users

Google’s G Suite, which includes Gmail, Google Docs, Hangouts, Meet and other apps, quietly passed a major milestone at the end of last year: It now has more than 2 billion monthly active users, G Suite boss Javier Soltero told Axios Wednesday. From a report: Long seen as the upstart challenger to Microsoft Office, Google’s … Read more

Pointers in C Programming

A pointer is a variable that stores the address of another variable. Unlike other variables that hold values of a certain type, pointer holds the address of a variable. For example, an integer variable holds (or you can say stores) an integer value, however an integer pointer holds the address of a integer variable. In … Read more

Structure in C programming

Structure is a group of variables of different data types represented by a single name. Lets say we need to store the data of students like student name, age, address, id etc. One way of doing this would be creating a different variable for each attribute, however when you need to store the data of … Read more

Function call by reference in C Programming

Before we discuss function call by reference, lets understand the terminologies that we will use while explaining this: Actual parameters: The parameters that appear in function calls. Formal parameters: The parameters that appear in function declarations. For example: We have a function declaration like this: int sum(int a, int b); The a and b parameters … Read more

Functions in C Programming

A function is a block of statements that performs a specific task. Suppose you are building an application in C language and in one of your program, you need to perform a same task more than once. In such case you have two options – a) Use the same set of statements every time you … Read more

Strings and String functions in c

String is an array of characters. In this post, we learn how to declare strings, how to work with strings in C programming and how to use the pre-defined string handling functions. We will see how to compare two strings, concatenate strings, copy one string to another & perform various string manipulation operations. We can … Read more

Two dimensional (2D) arrays in C programming

An array of arrays is known as 2D array. The two dimensional (2D) array in C programming is also known as matrix. A matrix can be represented as a table of rows and columns. Initialization of 2D Array There are two ways to initialize a two Dimensional arrays during declaration. int disp[2][4] = { {10, … Read more