Millillion Tech
Be involved with technology
Home
Buy Product Online
Medical & Health
Educational
Computer & Technology
Downloads
Books
Tutorials
Software
Windows
Computer Science
Programming Languages
C
C++
Ruby
Java
Python
Data Sructure
Software Development
Web Design & Development
Robotics
Academic
Help
Educational help
Technical Help
About Us
Translate
Categories
C Programming Problem Solving
Data Structure Problem Solving
Download
INNER POST ADS
Powered by
Blogger
.
Wednesday, May 20, 2015
12:02 AM
Email This
BlogThis!
Share to X
Share to Facebook
Newer Post
Home
Social Profiles
Popular Posts
Archives
Blog Archive
▼
2015
(25)
►
August
(6)
►
June
(10)
▼
May
(9)
C Programming, using linked list creating multi nodes
C programming, using linked list creating a node
Using structure, input some students' Name, Id and...
Using C, Input a string and check that it is palin...
C programming code for Prime number.
C programming code for Fibonacci Series
C Programming Buble Sorting
একটি C Programming Code লিখ যা একটি Array তে ৫টি I...
Popular Posts
Age Calculator using C Programming
#include<stdio.h> #include<time.h> int leapYearFeb(int year, int mon) //Leap year checking { int flag = 0; if (year %...
C Programming Infix To Postfix Conversation
#include<stdio.h> #include<conio.h> #include<string.h> #include<math.h> #include<stdlib.h> #defi...
Using linked list, write a C program, that will input some students' Id, Name, Department and CGPA respectively and print them.
#include<stdio.h> #include<conio.h> #include<string.h> #include<stdlib.h> #define SIZE 20 struct diu_cse ...
(no title)
Write a C program that will convert temperature from celcius to fahrenheit and fahrenheit to celcius. Input values from user.
#include<stdio.h> #include<math.h> void main() { char user; float clcs, farn, celcius, fahrenheit; print...
C Programming Binary Search Tree (BST) implementation insert and display it inorder, preorder and postorder
#include<stdio.h> #include<conio.h> #include<stdlib.h> #include<malloc.h> typedef struct binary_tree { stru...
Using C, Input a string and check that it is palindrome or not.
#include <stdio.h> #include <string.h> void main() { char str[25], rev_str[25] = {'\0'}; int i, len = 0, flag ...
Queues implementation( add, remove, peek) in C programming
#include <stdio.h> #define MAX 50 int queue_array[MAX]; int rear = -1; int front = -1; void main() { int choice; ...
Write a C program thar will enter a line of text, store in an array and then display it backwards.
#include<stdio.h> void main() { char line[80]; int i, l=0; printf("Write a line: \n "); gets(line); ...
C Programming Binary Search Tree (BST) implementation insert, delete and recursive travarse (inorder, preorder, postorder)
#include <stdio.h> #include <stdlib.h> struct btnode { int value; struct btnode *l; struct...