#c-programmingUnmoderated tagAll PostsTrending TagsExplore Communitieshive-193552Curators Communityhive-196037Blurt LifeStyleBlurt SpaceEcoerBlurtconnect Comm...Photography LoversNature LoversBlurttribe communityBlurt PakistanNewVisionLife#c-programmingTrendingHotNewMutedPayoutAItheindiantrader in # c-programming • 3 years ago • 3 min readC Program : Linking two arraysWelcome back, In today's blog we will link two different Arrays whose elements will be input by the user. So let's start, #include int main() { int n; printf("Enter the size of the…theindiantrader in # c-programming • 3 years ago • 3 min readC Program : Lets have some funWelcome back, In today's program we will be finding the molecular mass of a element. So let's start writing our code. You can copy this code below : #include #include double…theindiantrader in # c-programming • 3 years ago • 3 min readC Program : Some unexpected resultsWelcome back, In today's program i will share a program that i wrote with a different purpose but got the result unexpected. It is part of programming and it is really alot of fun. Let us see the…theindiantrader in # c-programming • 3 years ago • 3 min readC program : Let us learn about the errors using c programming languageWelcome back, In today's blog we will learn about different basic errors in C programming language through a program. So let's start, You can copy this code from below : #include…theindiantrader in # c-programming • 3 years ago • 3 min readC program : Writing the famous indian game of Antakshiri using c programmingWelcome back, In today's blog we will learn to write a famous Indian game played by every age group, Antakshiri. So let us write this program. You can copy the code from below :…theindiantrader in # c-programming • 3 years ago • 4 min readC Program : A IPL SimulationWelcome back, In today's blog we will write a IPL Program. This is not a program to work in real life and it will be just a structure of how a program could look and work like. Generally we are…theindiantrader in # c-programming • 3 years ago • 3 min readC Program - Some Personal programming PracticeWelcome back, In today's blog i am going to share a piece of code i was experimenting with. Just look at it and maybe someone would know what i am trying to do. Let's start, You can copy…theindiantrader in # c-programming • 3 years ago • 3 min readC Programming : Learn to find the PermutationWelcome back, In today's blog we will learn to calculate Permutation using C programming language. Let's start, You can copy the code from below : #include int factorial(int n) { if…theindiantrader in # c-programming • 3 years ago • 3 min readC Program : Conditional Programming with Example #1Welcome back, In today's blog we will make a conditional program. It will prove to us how these conditional programs can write millions of different programs using single concept. Let's…theindiantrader in # c-programming • 3 years ago • 3 min readC Program : Assembling the input characters in all the way possibleWelcome back, It's been a long time since we wrote a program using random function. This program will have a use of it at one place so let's start. You can copy the code from below :…theindiantrader in # c-programming • 3 years ago • 3 min readC Program : Quick Sort ImplementationWelcome back, In today's blog we will be implementing Quick Short Algo for sorting the elements of an Array that contains only number in it. So let's start, program continued You can…theindiantrader in # c-programming • 3 years ago • 2 min readC Program : Learn to print the Arithematic progressionWelcome back, In today's program we will learn to write the A.P ( Arithematic Progression ) by taking required parameters by the user at the runtime. Let's start writing our code, You can…theindiantrader in # c-programming • 3 years ago • 2 min readC Program : Students mark calculation programWelcome back, In today's blog we will learn to write a program that will take marks of students as input and then return us the percentage. I will share a setback of this program in the end and…theindiantrader in # c-programming • 3 years ago • 4 min readC program : Let us write a test for students todayWelcome back, Today we will create a mathematical test for students of class 5. they will take the test and get their result on the spot. So let's start, You can copy the above code from…theindiantrader in # c-programming • 3 years ago • 3 min readC Program : Demonstration of Bitcoin TransactionWelcome back, Let us demostrate how a bitcoin transaction work like using C programming language. This is just a dummy transaction that are aiming to create and so don't be in dilemma of…theindiantrader in # c-programming • 3 years ago • 3 min readC Program : Learn to find the number of days between two dates entered by the userWelcome back, In today's program we will learn to find the number of days between any two input dates entered by the user. So let's start, You can copy the code from below : #include…theindiantrader in # c-programming • 3 years ago • 3 min readC Program : Let us write a calculator programWelcome back, I am back with another C programming and today we will learn to make a calculator using C programming language. We will add basic functions in our calculator for now and modify it…theindiantrader in # c-programming • 3 years ago • 2 min readC Program : Learn to connect two functionsWelcome back, I am back with another blog for evryone. Today we will learn to link two functions in c programming. So let's start, You can copy this code from below : #include void…theindiantrader in # c-programming • 3 years ago • 2 min readC Program : Let us learn about abs functionWelcome back , We will learn some other in built function from C programming today. We will try to make use of what we have aleady learnt just to make our practice more interesting for the…theindiantrader in # c-programming • 3 years ago • 3 min readC Program : Let us learn about in bult functionsWelcome back, Today we will learn about another in built function from c library. It is the fib function so let us look at the code and learn about this function today. You can copy the code…