Category: C++
Actually C++ strings are two types 1. Traditional C style character string 2. String class type Introduces…
I tried to clear here my logic for pointer basic #include<iostream> using namespace std; int main(){ int…
declare arrays: arraytype arrayName[arraySize]; //basic syntax example: int zakiLive[10]; Initialize arrays: int zakiLive[5]={4,5,6,8}; zakiLive[3]=8 It means value…
defining numbers in c++ code: #include<iostreaM> using namespace std; int main() { //declaring the numbers short s;…
Nested If,Else If,Else: if(a<b){ if(c>a) { statement; } statement; }else{ if(c>d){ statement; } statement; } Just…
Last tutorial we have seen about ternary But the question is why we use ternary ? if(a>b){…
Recent Comments