Solution and Answers for queries in Information Technology Industry


Latest Post

C Language

Palindrome Code in c

Palindrome meaning word, phrase that reads the same backwards as forwards. for example Madam, Kayak, radar, civic, refer. See below...
Read More
C Language

Concat two strings without using Library or string function in C

In this program we are accepting two strings from user using Gets. After that by calculating length of first string...
Read More
C Language

Concatenating two strings in C with Function strcat

Concatenating means joining two strings for example first and last name. strcat function belongs to string.h header file. syntax for...
Read More
C Language

C Program for Temperature conversion from Fahrenheit to Celsius and kelvin

To convert temperature from Fahrenheit to Celsius we are using formula as (temperature - 32) * (5/9) To convert temperature...
Read More
C Language

C Program to check upper or lower case character without Function.

Program is accepting any character from user. We compare user input with ASCII value of A to Z or a...
Read More
C Language

C Program to check character is vowel or consonant using command line argument

Below code will check whether character passed from command line is vowel or consonant. "A", "E","I","O","U" either in upper or...
Read More
C Language

C Program to Calculate final velocity.

Below Running code will calculate the final velocity based on user input. Program is using formula v = u +...
Read More
C Language

C Program to check character is vowel or consonant

This C Language code will check whether entered character is vowel or consonant. "A", "E","I","O","U" either in upper or lower...
Read More
1 3 4 5