
How to Install OpenCV in Ubuntu 16.04 LTS for C / C++
In this post we will see How to Install OpenCV in Ubuntu for C/C++ OpenCV is an image processing library […]
In this post we will see How to Install OpenCV in Ubuntu for C/C++ OpenCV is an image processing library […]
C code for ASCII table /********************************************************************** 1. Printing ascii value using c program 2. C program to display ASCII values […]
Write a c program to print Floyd’s triangle. /********************************************************************** 1. How to print Floyd’s triangle in c 2. Write a […]
In this example we will learn how to Display current date and time using C++. #include<iostream> #include<cmath> #include <ctime> using […]
Random number generator using C++ #include<iostream> #include<time.h> #include<stdlib.h> #define MAX_NUM 10 using namespace std; void randnum() { int random; srand(time(NULL)); […]
A C++ program to print the half pyramid #include <iostream> using namespace std; int main() { int i,j,rows; cout<<“Enter the […]
# include <iostream> # include <string> using namespace std; int main() { int a,b,c; cout<< “Enter two nos :”<<endl; cout<< […]
Here we will learn how to write a program to Concatenate strings. CONCATENATION OF TWO STRINGS USING C++ PROGRAM # […]
What is Factorial? The Factorial of a specified number refers to the product of a given series of consecutive whole […]
Prime Numbers A prime number is an integer greater than 1 that has exactly two divisors, 1 and itself. The […]
Write the C++ program for processing of the students structure. Define the array of a structure called students including following fields: […]
Write a program that shows a menu such as figure 2.1 and does the following described tasks for entered number […]
Write a C++ program and call it sortcheck.cpp which receives 10 numbers from input and checks whether these numbers are in ascending […]
Opening second form using MySql database Do you every wanted to make a login like application and you can’t find […]
In this tutorial we will learn How to create a Simple Login Form in QT File->New File or Project… Applications->Qt Gui Application->Choose… We […]
Copyright © 2025 | WordPress Theme by MH Themes