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

2D MATRIX MODIFICATION

A Matrix has R rows and C columns. Get the matrix as input and multiply the value in the cells of the matrix by a value E if it is even and…
CF

Identify correct operator

An expression E is passed as an input to the program.  The expression will contain three numbers A,B and C, one equal symbol and one of…
CF

Left Greater Number

Given an array of N positive integers, for each number print the first number to it’s left which is greater than the current number.Print -1…
CF

Lucky Number

A Lucky Number is a number defined by the following process: Starting with any positive integer, replace the number by the sum of the squares…
PythonF

Reverse words

Given a string S as the input Write a program to print the reverse order of the words in the string S. Input Format:The first line contains S.…
PythonF

Array Element Adjacent Sum

Given an Array of length N, the program must print the sum of adjacent numbers of elements present in the array.Input Format:First line…
PythonF

String – Count Articles

A string S is passed as the input. The program must print the number of articles in S. The string S passed as the input NEEDNOT be corrected…