C program to reverse words in a string
C program to reverse words in a string This profram will invert each word occurring in the input string. Algorithm is
Read moreC program to reverse words in a string This profram will invert each word occurring in the input string. Algorithm is
Read moreC program to draw circles in circles #include<graphics.h> #include<conio.h> #include<dos.h> main() { int gd = DETECT, gm, x, y, color,
Read moreTraffic light program in c #include<graphics.h> #include<conio.h> #include<dos.h> #include<stdlib.h> main() { int gd = DETECT, gm, midx, midy; initgraph(&gd, &gm,
Read moreC program to draw a 3D bar chart #include <graphics.h> #include <conio.h> int main() { int gd = DETECT, gm;
Read moreBar chart program in c Chart is drawn using bars filled with different styles and in different colors. #include <graphics.h>
Read morePaint program in c language This program can draw different shapes using mouse such as line, circle, pixel and
Read moreC graphics programming #include <graphics.h> #include <conio.h> int main() { int gd = DETECT, gm; initgraph(&gd, &gm,”C:\\TC\\BGI”);
Read moreC Program to Find Factorial of a Number The factorial of a positive number n is given by: factorial of
Read moreC Program to find LCM of two Numbers using Recursion What is LCM LCM: Least Common Multiple of two numbers is
Read moreC Program to wish happy new year #include<stdio.h> #include<conio.h> #include<graphics.h> void shoot(); void shootagain(); void area(); void explode(int,int,int); void main()
Read more