Author name: vasu

PHP Data Types

Data type is the type of the data a variable is storing. PHP has different datatypes mentioned as follows – Datatypes in PHP can be broadly categorized in three categories – Scalar types They can hold only one value at a time. They further are of four types – Integer Float String Boolean Compound Types

PHP Data Types Read More »

C Data Types

A data type in c specifies the type of value that a variable can store for example integer, character, or float. Each data type requires a specific amount of memory. Data types in C are defined under three categories Primitive or primary Derived User defined Primitive Data Types – The primary data types in C

C Data Types Read More »

The FizzBuzz Problem

The Fizzbuzz Problem

Fizzbuzz is a very common game played to teach children how to perform divisions. The game is simple, The player with which the game starts has to say one, then the other player says 2 (count incrementally) and so on. The catch is if the player has got a number that is a multiple of three,

The Fizzbuzz Problem Read More »