c (programming language)

The C Programming Language Structure with C Language data types

The C Programming Language Structure with C Language data types

The C Programming Language Structure with C Language data types: Programming is an art because of its creativity and versatility. A c programming language allows us to think about minimum program structures in order that we will take it as a reference in future topics. C Language Hello World Example: Pre-processor Commands Functions Variables Comments …

The C Programming Language Structure with C Language data types Read More »

C# Program that read array display the smallest integer and sort the array in ascending order by using Array.Sort method.

C# Program that read array display the smallest integer and sort the array in ascending order by using Array.Sort method.

C# Program that read array display the smallest integer and sorts the array in ascending order by using Array.Sort method. Object: Write a program in C# to read a one-dimensional integer array from the user, display the smallest integer in the array, and sort the array in ascending order by using Array. Sort method. Code: …

C# Program that read array display the smallest integer and sort the array in ascending order by using Array.Sort method. Read More »

Write a C# program to demonstrate the multiple inheritance

Write a C# program to demonstrate the multiple inheritances

Write a C# program to demonstrate the multiple inheritances Object: Write a C# program to demonstrates the multiple inheritances \ Multilevel inheritance in c# with example C# Projects with Source Code Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _22sep {     interface IName     {         void displayname(string a);     …

Write a C# program to demonstrate the multiple inheritances Read More »

C# Program Create an inheritance hierarchy that a bank might use to represent the customer's bank accounts.

C# Program Create an inheritance hierarchy that a bank might use to represent the customer’s bank accounts.

C# Program Create an inheritance hierarchy that a bank might use to represent the customer’s bank accounts. Object: C# Program Create an inheritance hierarchy that a bank might use to represent customer’s bank accounts. All customers at this bank can deposit money into their accounts and withdraw money from their accounts. More specific kinds of …

C# Program Create an inheritance hierarchy that a bank might use to represent the customer’s bank accounts. Read More »

Develop a C# app that will determine the gross pay for each of three employees

Develop a C# app that will determine the gross pay for each of three employees

Develop a C# app that will determine the gross pay for each of three employees Object: Develop a C# app that will determine the gross pay for each of three employees. The company pays straight time for the first 20 hours worked by each employee and time-and-a-half for all hours worked in excess of 20 …

Develop a C# app that will determine the gross pay for each of three employees Read More »

Write a C# program that reads two arrays and checks whether they are equal.

Write a C# program that reads two arrays and checks whether they are equal.

Write a C# program that reads two arrays and checks whether they are equal. Object: Write a C# program that reads two arrays from the console and checks whether they are equal. C# Projects with Source Code Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lab_5a {     class chkequal     …

Write a C# program that reads two arrays and checks whether they are equal. Read More »

Write a C# program to create a static function factorial and calculate factorial of the number.

Write a C# program to create a static function factorial and calculate factorial of the number.

Write a C# program to create a static function factorial and calculate the factorial of the number. Object: Write a program to explain the method in C#. Create a static function factorial() that accepts a number from the user and returns the factorial of the number. C# Projects with Source Code Code: using System; using …

Write a C# program to create a static function factorial and calculate factorial of the number. Read More »

Create a class student with a data members name and calculate marks and percentage.

C# Program Create a class student with a data members name and calculate marks and percentage.

C# Program Create a class student with a data member’s name and calculate marks and percentage. Object: C# Program Create a class student with a data member name, age, marks of English, marks of math, marks of science, total marks, obtained marks and percentage provide member functions CalculateTotalMarks and CalculatePercentage to calculate marks and percentage …

C# Program Create a class student with a data members name and calculate marks and percentage. Read More »

C# program which checks whether the number you inputted is an Even or Odd number

C# program which checks whether the number you inputted is an Even or Odd number

C# program which checks whether the number you inputted is an Even or Odd number. Object: C# Program Make a class EvenODD, which checks whether the number you inputted is an Even or Odd number. C# Projects with Source Code Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lab_3 { class …

C# program which checks whether the number you inputted is an Even or Odd number Read More »

Write a c++ program that stores monthly rainfall amounts in an array.

Stores monthly rainfall amounts in an array. Object: Write a program that stores monthly rainfall amounts in an array. The program then displays the monthly rainfall amounts, the total annual rainfall amount, the average rainfall amount, the highest rainfall amount, or the lowest rainfall amount First get the rainfall amounts for the 12 months. Example: …

Write a c++ program that stores monthly rainfall amounts in an array. Read More »

Write a C++ program that reads a temperature value and the letter C for Celsius or F for Fahrenheit. Print whether water is liquid, solid, or gaseous

Write a C++ program that reads a temperature value and the letter C for Celsius or F for Fahrenheit. Print whether water is liquid, solid, or gaseous

C++ program that reads a temperature C for Celsius or F for Fahrenheit. Print whether water is liquid, solid, or gaseous Object: Write a program that reads a temperature value and the letter C for Celsius or F for Fahrenheit. Print whether water is liquid, solid, or gaseous at the given temperature at sea level. …

Write a C++ program that reads a temperature value and the letter C for Celsius or F for Fahrenheit. Print whether water is liquid, solid, or gaseous Read More »

Using function, write a complete program that prints your name 10 times. The Function can take no arguments and should not return any value

Using function, write program that prints your name 10 times. The Function can take no arguments and should not return any value

Using function, write a complete program that prints your name 10 times Object: Using function, write a complete program that prints your name 10 times. The Function can take no arguments and should not return any value. C++ projects for beginners with source code Code: #include<iostream> #include<conio.h> using namespace std; void nam(); void main() { …

Using function, write program that prints your name 10 times. The Function can take no arguments and should not return any value Read More »