Featured
-
How Regression Testing Detects Integral Errors In Business Processes
Humans are forever changing and evolving and so to
by kristina.rigina -
Get Display Banner Advertising Opportunity on FindNerd Platform
“Do you have a product or service that nee
by manoj.rawat -
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Objective C or Swift - Which Technology to Learn for iOS Development?
Swift programming language is completely based on
by siddharth.sindhi
Tags
Introduction to Basic C Language Program Features & Syntax for Beginner
Introduction of C Programming
C is a general purpose programming language which was developed by Dennis Ritchie in 1973 at the bell laboratories. C programming language was developed for the UNIX operating system. The langu...
Program to Convert String into Uppercase
Using library function:
We can use toupper() library function present in "string.h" to convert string into uppercase.
#include <stdio.h>
#include <string.h>
int main()
{
char str[100];
printf("Enter a string to co...
Program to count number of vowels and consonants in a string
Counting number of vowels,consonants and digits in a string:
In this program we are counting how many vowels ,consonants and digits are in the string which will be entered by the user. After user inputs a string , string will be iterated from...
Implement Queue Using Dynamic LinkList
Queue using Dynamic LinkList:-The Below code can shown you how to implement Queue using dynamic linklist in data structure using C. We can insert the node dynamically and the Linklist works on principal First-In-First-Out(FIFO). The Element can s...
Read and Write the Structure in File using C ( File Handling )
File Handling in C:- The File handling is used in c to store the information in file. we can read the data from file and write the data into file for securing your data. Here the below example can show you how to write and read the data of struct...
Implementation of Insertion Sort in C
Insertion Sort:- The Insertion sort is used to sort an array. The array can be sorted in each round means, In each Iteration of an array the element can be find in sorted.
Steps:-
1: The second element of array compared with the elements w...