tech C Programs | C Programming
Latest :

C Programs

Right Arrow Star Pattern Program In C | 4 Ways

C program to print the right arrow star pattern – In this article, we will brief in on the several methods to print a right arrow star pattern in C programming. Suitable examples and sample programs have also been added so that you can understand the whole thing very clearly. The compiler has also been added with which you can ...

Read More »

C Program : Capitalize First & Last Letter of A String | C Programs

C program to capitalize the first and last letter of each word in the given string. The input necessary for this is a string whose first and last letters are to be capitalized. Our desired output is the string after capitalizing the first and last letter of each word in the string. To read our input string (c) at runtime, ...

Read More »

C Program : Check if Two Strings Are Anagram or Not

Whether the given two strings are anagrams or not in C Programming. We can call to string anagrams when both of them contain same characters but, the order can be different. The inputs necessary for this is, two string which is to be checked for whether they are anagram or not. Our desired output is the validation or conclusion of ...

Read More »

Left Arrow Star Pattern Program in C | C Programs

C program to print the left arrow star pattern – In this article, we will summarise in on the different methods to print a left arrow star pattern in C programming. Suitable examples and sample programs have also been added so that you can understand the whole thing very clearly. The compiler has also been added with which you can ...

Read More »

C Program Mirrored Half Diamond Star Pattern | C Patterns

C program to print a mirrored half diamond star pattern – In this article, we will brief in on the several ways to print a mirrored half diamond star pattern in C programming. Suitable examples and sample programs have also been added so that you can understand the whole thing very clearly. The compiler has also been added with which ...

Read More »

C Program Inverted Mirrored Right Triangle Star Pattern

C Program to print an inverted mirrored right triangle star pattern – In this article, we will discuss the multiple means to print an inverted mirrored right triangle star pattern. Suitable examples and sample programs have also been added so that you can understand the whole thing very clearly. The compiler has also been added with which you can execute ...

Read More »

Hollow Pyramid Star Pattern Program in C

C Program to print a hollow pyramid star pattern – In this article, we will explain the several means to print a hollow pyramid star pattern in C programming. Suitable examples and sample programs have also been added so that you can understand the whole thing very clearly. The compiler has also been added with which you can execute it ...

Read More »

C Program : Non – Repeating Characters in A String | C Programs

C program to display all the non-repeating characters in a given string. To do so, we will require a string whose non-repeating characters are to be displayed as our input. The desired output here is, displaying every character that is non-repeating in the given input string. So initially, we will read a input string (c) at runtime using gets() function. ...

Read More »

C Program : Sum of Positive Square Elements in An Array | C Programs

C program to find the sum of positive square elements in a given array. We can call an element a positive square if the element is a perfect square. For this, we require the number of elements in the array or size of the array along with the data values of the array as input. The expected output is an ...

Read More »

C Program : Find Longest Palindrome in An Array | C Programs

Find the longest palindrome element in the given array in C Programming. We can call a number a palindrome when the number is equal to the reverse of the same number i.e., when read from forward or backward it is the same. For this, the inputs necessary are the size of the array or the number of elements in the ...

Read More »
tech