C program to reverse order of words in a string
Write a C program to input any string from user and reverse the order of words. How to reverse the order of words in a given string using C programming. Logic to reverse the order of words in a...
View ArticleSquare number pattern 2 in C
Write a C program to print the given square number pattern using loop. How to print the given square number pattern of n rows using for loop in C programming. Logic to print the given number pattern in...
View ArticleHollow square number pattern 1 in C
Write a C program to print the given number pattern using for loop. How to print the given hollow square number pattern using loop in C programming. Logic to print the given number pattern using loop...
View ArticleC program to print X number pattern
Write a C program to print the given X number pattern series using for loop. How to print the given X number pattern series using for loop in C programming. Logic to print the given X number pattern...
View ArticleHalf diamond number pattern program in C - 3
Write a C program to print the given half diamond number pattern series using loop. How to print the given number pattern series using for loop in C programming. Logic to print the given half diamond...
View ArticleHalf diamond number pattern with star border program in C - 1
Write a C program to print the given half diamond star number pattern series using for loop. How to print the given half diamond star number pattern series using loop in C programming. Logic to print...
View ArticleC program to demonstrate the use of pointers
Previous ExerciseNext ProgramWrite a C program to create, initialize and demonstrate the use of a pointer variable. How to access values and addresses using a pointer variable in C programming....
View ArticleC program to add two numbers using pointers
Previous ProgramNext ProgramWrite a C program to read two numbers from user and add them using pointers. How to find sum of two number using pointers in C programming. Program to perform arithmetic...
View ArticleC program to swap two numbers using call by reference
Previous ProgramNext ProgramWrite a C program to swap two numbers using pointers and functions. How to swap two numbers using call by reference method. Logic to swap two number using pointers in C...
View ArticleC program to print 8 star pattern
Write a C program to print 8 star pattern series using loop. How to print 8 star pattern series using for loop in C programming. Logic to print 8 star pattern series of N columns in C program....
View ArticleC program to left rotate an array
Write a C program to left rotate an array by n position. Logic to rotate an array to left by n position in C program. ExampleInputInput 10 elements in array: 1 2 3 4 5 6 7 8 9 10Input number of times...
View ArticleC program to right rotate an array
Write a C program to right rotate an array by n position. Logic to rotate an array to right by n position in C program. ExampleInputInput 10 elements in array: 1 2 3 4 5 6 7 8 9 10Input number of times...
View Article