C++ FIRST PROGRAM C++ FIRST PROGRAM #include<iostream.h> using namespace std; int main () { cout<<“Hello World !”; return 0; } […]
Read moreCategory: Coding
C++ FIRST PROGRAM
C++ FIRST PROGRAM C++ FIRST PROGRAM #include<iostream> using namespace std; int main () { cout<<“hello world”; return; } Topics Covered […]
Read moreSum and Average of an Array
Sum and Average of an Array Sum and Average of an Array Code : #include<stdio.h> int main(){ Β Β int n; Β Β int sum=0; […]
Read moreChristmas tree ππ
// If you liked it don’t forget to give // a (+1) like. // Thank you all! // By @ Akash.. #include <iostream> #define N […]
Read morePrint alternate element in an Array
Print alternate element in an Array Print alternate element in an Array Code : #include<stdio.h> int main(){ Β Β int n; Β Β printf(“Enter size […]
Read moreSwapping two number using Function (Call By Reference)
Swapping two number using Function (Call By Reference) Swapping two number using Function (Call By Reference) Question: Write a program to swap two […]
Read moreFind the day of the week you were born!
// Please enter your birthday in this // format(including spaces): // DD MM YYYY // 22 01 1997 #include <iostream> using namespace std; int […]
Read moreTranspose of matrix in 2d Array
Transpose of matrix in 2d Array Transpose of matrix in 2d Array Q. Write a program to print the transpose of the matrix entered […]
Read moreSearching an element in an Array
Searching an element in an Array Searching an element in an Array Question: Write a program to search a how many […]
Read moreTranspose of a Matrix
Transpose Of a Matrix Transpose Of a Matrix Question: Write a program to take input of a Matrix and then print the Transpose of […]
Read more
Recent Comments