Latest Blog News
Password Pattern Maker in C Programming
Password Pattern Maker in C Programming - Program explanation At first, I…
BigData Hadoop Project – An Effective Online Wiki page Ranking Tool
BigData Hadoop Project - An Effective Online Wiki page Ranking Tool If…
How to swap two numbers using macros in C++ program
How to swap two numbers using macros in C++ program #include #define…
How to Run Asp.net Core Web Application/Web API on Ubuntu
The new version of ASP.Online, ASP.Net has elevated significant amount of attention…
C Program to accept values into single dimensional array and print the array in reverse by using pointers
#include<stdio.h> #include<conio.h> main( ) { int a,*b,i; clrscr( ); b=&a; for(i=0;i<=4;i++) {…
C Program to accept values into an array and print array in reverse and original format by using three different functions
#include<stdio.h> #include<conio.h> void read_array(int x[]); void print_array(int y[]); void rev_array(int z[]); main()…