//this is a program to initialize the structure #include<stdio.h> #include<conio.h> void main() { struct student { c...
Read More
Write a program to accept the book details and display them and display them using structure
//this is a program to accept the book details and display them #include<stdio.h> #include<conio.h> void main() { struct...
Read More
Write a program to accept the details of the banking account using structure
//this is a program to accept the details of the banking account #include<stdio.h> #include<conio.h> void main() { struct...
Read More
Write a program for the demonstration of a structure
//this is a program for the demonstration of a structure #include<stdio.h> #include<conio.h> void main() { struct student...
Read More
Write a program to accept the user name character by character and display it
//this is a program to accept the user name and display it #include<stdio.h> #include<conio.h> void main() { int i; c...
Read More
Write a program to accept the user name and display it
//this is a program to accept the user name and display it #include<stdio.h> #include<conio.h> void main() { char name[20...
Read More
Write a program to check whether the entered string is palindrome or not
//this is a program to check whether the entered string is palindrome or not //Palindrome means reverse of the string equal to original st...
Read More
Write a program to find the number of vowels and consonants
//this is a program to find the number of vowels and consonants #include<stdio.h> #include<conio.h> void main() { char st...
Read More
Write a program to find the length of a string
//this is a program to find the length of a string #include<stdio.h> #include<conio.h> void main() { char string[10]; i...
Read More
Write a program to copy the one string into another string
//this is a program to copy the string #include<stdio.h> #include<conio.h> void main() { char str1[20],str2[20]; int i=...
Read More
Write a program to add, subtract , multiply and divide two number using functions
//this is a program to add, substrat, multiply and divide #include<stdio.h> #include<conio.h> int add(int x, int y); int su...
Read More
Write a program to find the sum of digits of the number entered by the user
//this is a program to find the sum of digits of the number entered by the user #include<stdio.h> #include<conio.h> int sumo...
Read More
Write a program to find the sum of two numbers using user defined function which returns value
//this is a program to find the sum of two numbers using user defined function #include<stdio.h> #include<conio.h> int sum(i...
Read More
Write a program to find the sum of two numbers using the user defined
//this is a program to find the sum of two numbers using the user defined #include<stdio.h> #include<conio.h> void sum(int x...
Read More
Write a program to print the star pattern pyramid using the user defined function
//this is a program to print the star pattern using the user defined function /* * * * * * * * * * * * * * * * */ #include<std...
Read More
Write a program to print only odd numbers from 1-50 using the user defined function
//this is a program to print only odd numbers from 1-50 using the user defined function #include<stdio.h> #include<conio.h> ...
Read More
Write a program to find whether the entered number is positive or negative
//this is a program to find whether the entered number is positive or negative #include<stdio.h> #include<conio.h> void even...
Read More
Write a program to find the area of circle using user defined function
//this is a program to find the area of circle using user defined function #include<stdio.h> #include<conio.h> void area(); ...
Read More
Write a program to add 2 numbers using user defined function
//this is a program to add 2 numbers using user defined function #include<stdio.h> #include<conio.h> void add(); void main(...
Read More
Write a program to find the largest value from the given array 2D using user defined function
//this is a program to find the largest value from the given array(2X2) using user defined function #include<stdio.h> #include<...
Read More
Write a program to find the greater number among 2 using user defined function
//this is a program to find the greater number among 2 using user defined function #include<stdio.h> #include<conio.h> int g...
Read More
Write a program to find the factorial of the entered number using user defined function
//this is a program to find the factorial of the entered number using user defined function #include<stdio.h> #include<conio.h&g...
Read More
Write a program to demosntrate strcat() function
//this is a program to demosntrate strcat() funtion #include<stdio.h> #include<conio.h> void main() { char fname[20], lna...
Read More
Write a program to find the factorial of a number using the recursive function
//this is a program to find the factorial of a number using the recursive function #include<stdio.h> #include<conio.h> long ...
Read More
Write a program to find the Fibonacci series using recursive function
//this is a program to find the fibbonaccies series using the recursive function #include<stdio.h> #include<conio.h> int fib...
Read More
Write a program to find the largest among three numbers
//this is a program to find the largrest among three numbers #include<stdio.h> #include<conio.h> void main() { int num1,n...
Read More
Write a program for the demonstration of call by value
//this is a program for the demostration of call by value #include<stdio.h> #include<conio.h> void display(int num); void m...
Read More
Write a program for the demonstration of Pointers
//this is a program for the demonstration of Pointers #include<stdio.h> #include<conio.h> void main() { int x; int *p...
Read More
Write a program to find the product of two numbers using pointers
//this is a program to find the product of two numbers using pointers #include<stdio.h> #include<conio.h> void main() { i...
Read More
Super Shop Management System
Super Shop Management System Program Name - Computer Engineering Program Code – CO-3-I Course Name – Database Ma...
Read More
Program to create Moving Car in C Graphics
Program of Moving Car :- /* Moving Car */ #include<stdio.h> #include<conio.h> #include<stdlib.h> #inc...
Read More
Tic Tac Toe Game using Array
Tic Tac Toe Game using Array Program Name – Computer Engineering Program Code – CO-3-I Course Name – Date Structur...
Read More
Program To link C++ with sql database
/* Program to link c++ with sql database */
Read More
Program for Prefix Evaluation in C
/* Prefix Evaluation */ #include<stdio.h> #include<conio.h> #include<string.h> #include<ctype.h> #include...
Read More
Program for Postfix Evaluation in C
/* Postfix Evaluation */ #include<stdio.h> #include<conio.h> #include<string.h> #include<ctype.h> #includ...
Read More
Program to convert Infix to Prefix Method 2
/* INfix to Prefix Method 2 left to right 1.reverse the string 2.do same as postfix and minor change ...
Read More
Program to convert Infix to Prefix Method 1
/* INfix to Prefix Method 1 left to right 1.do same as postfix 3 minor change: 1 Equal Priority ...
Read More
Program to convert Infix into Postfix
/* INfix to Postfix*/ #include<stdio.h> #include<conio.h> #include<ctype.h> #include<string.h> #define SIZE 10...
Read More
Write a Program to find Fibonacci Series using Recursion
/* Fibonacci Series using Recursion 0 1 1 2 3 5 8 13 21 */ #include<stdio.h> void fibo(int num); int main() { int num;...
Read More
Write a Program to find Factorial using Recursion
/* Factorial using Recursion */ #include<stdio.h> long int factorial(int num); int main() { int num; long int fact; ...
Read More
Stack using Structure
/* Stack using Structure */ #include<stdio.h> #include<conio.h> #define SIZE 100 typedef struct STACK { int data...
Read More
Stack all operation using single linked list
/* Stack all operation using single linked list */ #include<stdio.h> #include<stdlib.h> struct node { int data; stru...
Read More
Program to implement all stack operation using static array
/*Program to implement all stack operation using static array */ #include<stdio.h> #include<conio.h> #include<stdlib.h&g...
Read More
Write a Program for Tower of hanoi in C
#include <stdio.h> void towerOfHanoi(int n, char from_rod, char to_rod, char aux_rod) ; int main() { int n = 4; // Number ...
Read More
Write a Program for Priority Queue in C
/* Priority Queue Ascending Order */ #include<stdio.h> #include<process.h> struct node { int data; int pri...
Read More
Write a program for Linear Queue using Static Array in C
/* Linear Queue using Static Array */ #include<stdio.h> #include<process.h> #define SIZE 5 typedef struct QUEUE { ...
Read More
Subscribe to:
Posts (Atom)