C

C

Explore our C programming domain filled with a wealth of articles! Discover tutorials, advanced techniques, code examples, and best practices to enhance your skills. Dive in and start coding with confidence today!

CF

Matrix Maximum Column Sum

An integer matrix of size N*N is given as input. The program must print the maximum column-wise sum of the matrix. Boundary Condition(s):1…
CF

Pattern – Asterisk Edge

Given a positive integer value N as input, print the pattern as in the Example Input/Output section. The outer edges must be represented by…
CF

C – Functions – Vowel Count

A string is passed as input. The program must print the count of vowels. Fill in the lines to implement the function countVowels. Boundary…
CF

Arithmetic Progression

Accept three values related to an arithmetic progression – number of terms T, initial value I and the difference between the terms…
CF

Character Between Two Vowels

Given a string S, Print only the characters which are surrounded by vowels on both sides, if no character matches the condition print -1.…
CF

Matrix Find String Row-wise

A character matrix of size N*N and a string S are given as input.The program must check if the string is present in the matrix row-wise and…
CF

First N Common Characters

Two string values S1, S2 are passed as the input. The program must print first N characters present in S1 which are also present in S2. Input…