C Program to Find Substring Of String Without Using Library Function !!!
C Program to find whether entered string is substring or not without using library function. Program is explained in detail. Sub String can be found using while loop.
C Program to find whether entered string is substring or not without using library function. Program is explained in detail. Sub String can be found using while loop.
Tutorial will explain you C Program to Hide Mouse Pointer . In Dos Programming we can use interrupts and can code to hide C Program.
Accept two numbers from the user and swap the values of two integer variables using the pointer.
The bully algorithm is a method in distributed computing for dynamically selecting a coordinator by process ID number
C Program to Print Right Angle Fibonacci Series Pyramid using nested loop statements.
C Program to print the pyramid in C Language which will print binary numbers in right angle fashion.
Line() function is used to draw line in C Programming graphics mode.
User can enter the calender entry i.e date,month and year. C Program will print the day of that date.
A square containing integers arranged in an equal number of rows and columns so that the sum of the integers in any row, column, or diagonal is the same. is called magic Square.
Stack operations can be implemented using the pointer in easy manner. This article will explain you everything about the stack using pointer.
We are reading one file character by character and same character is written in the other file which is opened in writing mode.
Re Position the file pointer using fseek() and print the last n characters from the file.
Read the single file character by character and change the case of character to uppercase and write the character to the file opened in write mode.
In this program , base address of the array is stored inside the pointer variable and using pointer the sum of array element is computed.
This program will explain the different operations that can be performed on the structure in c programming language.
C Program to Count - Vowels,Spaces,Words,Characters,Digits
In this program we are accepting the data inside the structure array and then finding the maximum value of any of the structure member.
Suppose you are having the list of strings then we are sorting all the strings in descending and ascending order.
Stack can be implemented using array. Stack is created using the structure and stack elements are maintained by using the array.
C Program to Implement Stack Operations using Singly Linked List in C Programming [crayon-6481c9b846c51088141185/]
Compare two files in a C Programming Program : C Program to Compare two text/data files in C Programming Check whether two files are identical or not. [crayon-6481c9b846f36970786793/] Explanation : Firstly Declare two file pointers for two files. Open two files in read mode. Now Inside while loop read both files character by character. Check both characters whether they are equal or not. If inside if statement ch1 = EOF and ch2=EOF then both files are said to be equal otherwise both files are non identicle.
Program to Calculate Length of the String using Pointer Write a C Program which will accept string from the user . Pass this string to the function. Calculate the length of the string using pointer. Program : Length of the String using Pointer [crayon-6481c9b8471f0142389801/] Output : [crayon-6481c9b8471f7169496330/] Explanation : gets() is used to accept string with spaces. we are passing accepted string to the function. Inside function we have stored this string in pointer. (i.e base of the string is stored inside pointer variable). Inside while loop we are [...]
C Program : Print All Arguments passed to C Program using Command Line. [crayon-6481c9b8476d9401224214/] Output : Carry out following Steps to Run Save Program Compile Program. Run Program. Now Open Command Prompt. Move to the directory where program is saved. Type following command. [crayon-6481c9b8476df449778563/]
Program : A program to evaluate the power series [crayon-6481c9b8479c0497362178/] It uses if......else to test the accuracy. The power series contains the recurrence relationship of the type [crayon-6481c9b8479c7245646552/] If Tn-1 (usually known as previous term) is known, then Tn (known as present term) can be easily found by multiplying the previous term by x/n. Then [crayon-6481c9b8479cb317660067/] C Program for Exponent Series : [crayon-6481c9b8479ce985649356/] Output : [crayon-6481c9b8479d1237768371/]