Python program to check number is prime or not. Python program to check number is prime or not. Reviewed by on December 26, 2019 Rating: 5
Python program to check number is odd or even. Python program to check number is odd or even. Reviewed by on December 26, 2019 Rating: 5
Python program to add 2 numbers. Python program to add 2 numbers. Reviewed by on December 26, 2019 Rating: 5
Python Program to get int,float,string from user and print it. Python Program to get int,float,string from user and print it. Reviewed by on December 26, 2019 Rating: 5
Python program to print Hello World. Python program to print Hello World. Reviewed by on December 26, 2019 Rating: 5
C program to find and print common elements from two array. C program to find and print common elements from two array. Reviewed by on December 26, 2019 Rating: 5

C program to write to file.

December 26, 2019
#include<stdio.h> #include<conio.h> #include<string.h> #include<stdlib.h> void main() { clrscr(); FILE *fp; ...
C program to write to file. C program to write to file. Reviewed by on December 26, 2019 Rating: 5

C program to read from file.

December 26, 2019
#include<stdio.h> #include<conio.h> #include<stdlib.h> void main() { clrscr(); char c[1000]; FILE *fp; if ((fp=f...
C program to read from file. C program to read from file. Reviewed by on December 26, 2019 Rating: 5

C program to get IP Address.

December 26, 2019
#include<conio.h> #include<stdlib.h> void main() { clrscr(); system( "C:\\Windows\\System32\\ipconfig" ); getc...
C program to get IP Address. C program to get IP Address. Reviewed by on December 26, 2019 Rating: 5

C program to shutdown PC.

December 26, 2019
#include<stdio.h> #include<stdlib.h> int main() { system( "C:\\Windows\\System32\\shutdown /s" ); return 0; }
C program to shutdown PC. C program to shutdown PC. Reviewed by on December 26, 2019 Rating: 5
C program to swap two strings. C program to swap two strings. Reviewed by on December 26, 2019 Rating: 5
C program to convert lowercase string to uppercase. C program to convert lowercase string to uppercase. Reviewed by on December 26, 2019 Rating: 5
C program to covert uppercase string into lowecase. C program to covert uppercase string into lowecase. Reviewed by on December 26, 2019 Rating: 5
C program to sort string in descending order. C program to sort string in descending order. Reviewed by on December 26, 2019 Rating: 5
C program to sort string in ascending order. C program to sort string in ascending order. Reviewed by on December 26, 2019 Rating: 5
C program to remove spaces from string. C program to remove spaces from string. Reviewed by on December 26, 2019 Rating: 5
C Program to Count Occurrence of Words in Sentence. C Program to Count Occurrence of Words in Sentence. Reviewed by on December 26, 2019 Rating: 5
C program to delete words from sentence. C program to delete words from sentence. Reviewed by on December 26, 2019 Rating: 5
C program to delete vowels from the string. C program to delete vowels from the string. Reviewed by on December 26, 2019 Rating: 5
C program to Reverse the string. C program to Reverse the string. Reviewed by on December 26, 2019 Rating: 5
C program to concat 2 strings using pointer. C program to concat 2 strings using pointer. Reviewed by on December 25, 2019 Rating: 5
C program to concat 2 Strings without using Library Function. C program to concat 2 Strings without using Library Function. Reviewed by on December 25, 2019 Rating: 5
C program to concat 2 Strings using Library function. C program to concat 2 Strings using Library function. Reviewed by on December 25, 2019 Rating: 5
C program to compare two Strings. C program to compare two Strings. Reviewed by on December 25, 2019 Rating: 5
C program to find length of the String. C program to find length of the String. Reviewed by on December 25, 2019 Rating: 5
C program to get string from user and print. C program to get string from user and print. Reviewed by on December 25, 2019 Rating: 5
C program to demonstrate 3 Dimensional array. C program to demonstrate 3 Dimensional array. Reviewed by on December 25, 2019 Rating: 5
C program to Multiply Two Matrix. C program to Multiply Two Matrix. Reviewed by on December 25, 2019 Rating: 5

C program to Transpose Matrix.

December 25, 2019
#include<stdio.h> #include<conio.h> void main() { clrscr(); int arr[3][3], i, j, arrt[3][3]; printf( "Enter elemen...
C program to Transpose Matrix. C program to Transpose Matrix. Reviewed by on December 25, 2019 Rating: 5
C Program to Subtract Two Matrix. C Program to Subtract Two Matrix. Reviewed by on December 25, 2019 Rating: 5

C Program to Add Two Matrix.

December 25, 2019
#include<stdio.h> #include<conio.h> int main() { int mat1[3][3], mat2[3][3], i, j, mat3[3][3]; printf( "Enter...
C Program to Add Two Matrix. C Program to Add Two Matrix. Reviewed by on December 25, 2019 Rating: 5

C program to merge two arrays.

December 25, 2019
#include<stdio.h> #include<conio.h> int main() { int arr1[50], arr2[50], size1, size2, i, k, merge[100]; printf( &...
C program to merge two arrays. C program to merge two arrays. Reviewed by on December 25, 2019 Rating: 5
C program to delete element from array. C program to delete element from array. Reviewed by on December 25, 2019 Rating: 5
C program to insert element in array at the particular position. C program to insert element in array at the particular position. Reviewed by on December 25, 2019 Rating: 5
C program to print array elements in reverse order. C program to print array elements in reverse order. Reviewed by on December 25, 2019 Rating: 5
C program to find the smallest element in array. C program to find the smallest element in array. Reviewed by on December 25, 2019 Rating: 5
C Program to find largest element in array. C Program to find largest element in array. Reviewed by on December 25, 2019 Rating: 5

conio.h in C Programming

December 25, 2019
conio.h in C Programming conio.h is the the header file which is used by MS-Dos compilers to provide console input and output.This h...
conio.h in C Programming conio.h in C Programming Reviewed by on December 25, 2019 Rating: 5
C program for addition of 2 numbers using pointers. C program for addition of 2 numbers using pointers. Reviewed by on December 22, 2019 Rating: 5

C program for Binary Search.

December 22, 2019
#include<stdio.h> #include<conio.h> void main() { clrscr(); int n, i, arr[50], search, first, last, middle; printf( &qu...
C program for Binary Search. C program for Binary Search. Reviewed by on December 22, 2019 Rating: 5

C program for Linear Search.

December 22, 2019
#include<stdio.h> #include<conio.h> void main() { clrscr(); int arr[10], i, num, n, c=0, pos; printf( "Enter the a...
C program for Linear Search. C program for Linear Search. Reviewed by on December 22, 2019 Rating: 5
C program to demonstrate One Dimentional Array. C program to demonstrate One Dimentional Array. Reviewed by on December 22, 2019 Rating: 5
C program to print Pascal Triangle. C program to print Pascal Triangle. Reviewed by on December 22, 2019 Rating: 5
Powered by Blogger.