Tag: Lab programs
C Program to copy the content of file to another
Problem Statement Write a program in C to copy the content of one file to another. How to copy the content of the file to another using C ?
C Program to sort the numbers in descending order
Problem Statement Write a program in C to sort the given numbers in descending order. How to sort the number in descending order in C ?
C Program to a print pascal triangle
Problem Statement Write a program in C to print pascal triangle. How to print a pascal triange in C ?
C Program to delete an element from an array
Problem Statement Write a program in C to delete an element from an array. How to delete an element from an array in C ?
C# Program to display "Hello, World!"
Problem Statement Write a program in Visual C# to print Hello World in the console Window. How to display Hello World in C# ? Output Hello, World!
C Program to find the size of the array
Problem Statement Write a program in C to find the array size. How to find the size of the array in C ?
C Program to find square and cube of given number
Problem Statement You need to write a program in C to find the square and cube of a given number. Solution
C Program to search a number in an array
Problem Statement Write a program in C to search for a given number within the array. How to search for an given number in an array ?
C Program to sort numbers in ascending order
Problem Statement You need to write a program in C to sort the given numbers in ascending order. How to sort numbers in ascending order in C ?
C Program to generate random numbers
Problem Statement Write a program in C to generate 10 random number between 1 and 100. C Program to generate random numbers
C Program to convert uppercase string to lower case
Problem Statement Write a program in C to convert the given string from upper case to lower case. How to convert a upper case string to lower case string in C ?
C Program to insert an element into an array
Problem Statement Write a program in C to insert an element in to an array. C Program to insert an element into an array