C Programming Code Examples
C > Arrays and Matrices Code Examples
sort even and odd elements of array separately
Check if a Number is Positive or Negative -
C Language check if a number is positive or negative using nested if...else. This program takes a number from user & checks whether that number is either positive or negative or
C Program to Linked List implementation -
Create list, add in the list, delete in the list, append two list, show list, add in beginning, add in end, add after a given element, return to main menu, delete in beginning, delete in
Find Maximum between 2 Numbers using -
C Program input two numbers from user and find maximum between two numbers using switch case. Input two numbers. Store it in a variable say j1 & j2. Switch expression j1 > j2
The Guessing Game code C programming -
Declare variable to be guess. Declare variable to store guessed date. Declare variable to test for invalid input. Display the intro and directions. Get the users guess and store it.
C++ Code Find Largest of Three Numbers -
To find the largest number among the three numbers in C++, enter three numbers, now checking which one is the "largest number". After finding the largest number, we display
C++ Find Frequency of Character in String -
To find the frequency of character in string in C++, enter the string and enter the character to Find the Frequency of that character (or to "count the occurrence of character") in string
C Language Print Natural Numbers 1 to N -
C program print all natural numbers from 1 to n using loop. Input upper limit to print natural number from user. Store it in a variable say N. Run a For Loop from 1 to N with 1 increment.
C++ Simple Calculator Code for Beginners -
Write a simple C++ program which have four different functions for "basic operations" like addition, subtraction, division, multiplication. It should be menu based asking user to enter