Fizz Buzz Program in C

In this tutorial, we will learn about Fizz Buzz Implementation in C programming. Let us start by understanding what Fizz Buzz is and its implementation in a program. Fizz Buzz Program A Fizz Buzz program prints the number from the range of 1 to n, where n is the input number taken from the user. … Read more

C Program to Find Second Largest Number in an Array

The following C program finds the second largest element present in an array. The program iterates through an array and compares each element in an array. For example: Input: arr[] = {5, 85, 19, 6, 99, 45}Output: The second largest element is 85. C Program to Find Second Largest Number in an Array Output: Enter … Read more

.Net Framework

.Net is a software development platform developed by Microsoft. It was meant to create applications, which would run on a windows platform. The first beta version was released in 2000. Although C# is a computer language that can be studied on its own, it has a special relationship to its runtime environment, the .NET Framework. … Read more

C# DirectoryInfo Class

In C#, DirectoryInfo Class is a part of System.IO namespace and it provides properties and methods to perform various operations on directory and subdirectory such as to create, delete and move directory. It cannot be inherited. C# DirectoryInfo Properties The following tables list the properties provided by DirectoryInfo class. Property Description CreationTime It is used … Read more

C# FileInfo Class

In C#, FileInfo class provides properties and instance methods that are used to deal with the various operations in a file such as creating, copying, deleting, moving, etc. It is derived from FileSystemInfo class and is a part of System.IO namespace. C# FileInfo Properties The following are some of the most used properties in FileInfo class. … Read more

C# BinaryReader and BinaryWriter

BinaryReader and BinaryWriter are the classes that are used to read and write into a binary file. These are just like C# StreamReader and StreamWriter except here we read and write to a binary file. C# BinaryReader class This class in C# is used to read binary information from a file. This class is present … Read more

C# StreamReader and StreamWriter

StreamReader and StreamWriterare classes are inherited from the base class Stream, these classes are used to read and write from a file. You may go through the File I/O. C# StreamReader Class The StreamReader class inherits from TExtReader class. It is used for reading data from a file. The most used method in this class … Read more