Category Archives: programming
Mobile Marvels 4: Unveiling the Intriguing World of Smartphone Facts!
Mobile Marvels 3: Unveiling the Intriguing World of Smartphone Facts!
Mobile Marvels 2: Unveiling the Intriguing World of Smartphone Facts!/Interesting
1.The first smartphone was IBM’s Simon, introduced in 1992. It had a touchscreen, email capabilities, and even a built-in fax machine. 2.The world’s most popular mobile game is “PUBG Mobile,” with over a billion downloads worldwide. It’s a battle royale game that has captured the attention of gamers across the globe. 3.The average person checksContinue reading “Mobile Marvels 2: Unveiling the Intriguing World of Smartphone Facts!/Interesting”
18 Important functions in C++
Functions:- /*In this post we are going to learn about some important functions in C++.Hope you will learn something*/ We are going to learn about:- Functions in C++:- Cin:- β cin is used to read input from the standard input device, which is usually the keyboard. It is typically used in conjunction with the extractionContinue reading “18 Important functions in C++”
C++/Arrays and Structures/Important Points/Basic to Master
Arrays and Structures:- β’Structure is a user-defined which has the combination of data items with different data types. β’Structure is declared using the keyword ‘struct’. β’Structure elements are referenced using its object name followed by dot(.)operator and then the member name β’A structure without a name/tag is called anonymous structure. β’The structure elements can beContinue reading “C++/Arrays and Structures/Important Points/Basic to Master”
C++/Diving Deep/Important points/Basic to Master
Diving Deep into C++ β’A large program can typically be split into smaller sized blocks called functions. β’Functions can be classified into Predefined or Built-in or Library Functions and User-defined Functions. β’User-defined functions are created by the user. β’The void function tells the compiler that the function returns nothing. β’ The return statement returns aContinue reading “C++/Diving Deep/Important points/Basic to Master”