Write a C Program to read number from file and write them in odd and even file

A file named data contains series of integer numbers. Write a c program to read all numbers from file and then write all odd numbers into file named...
May 17, 2022

Write a C program to write a string in file

Write a program to write a string in fileThe user is prompted to enter the name of the file to write to and also string that has to...
May 15, 2022

Write a program for sorting using pointer

Write a program for sorting using pointerIn C programming language, there are multiple sorting algorithms available, which can be incorporated inside the code. The various types of sorting...
May 05, 2022

Write a program to access elements using pointer

Write a program to access elements using pointerIn this program, we will learn to create a C program that will Access Elements of an Array Using Pointer using C programming.PrerequisitesBefore...
April 10, 2022

Write a C program to print the address of character and the character of string using pointer

Write a C program to print the address of character and the character of string using pointerIn this program we are going to print address of character and...
April 03, 2022

Write a C program to swap the two values using pointers

Write a C program to swap the two values using pointersMethod 1.In this program we are going to swap two numbers using pointers. The pointer will be used...
March 17, 2022