Showing posts with the label pointers in cShow all

C Program to Add and Subtract two complex numbers using Structure

C Program to Add and Subtract two complex numbers using Structure #include<stdio.h&…

Read more

C Program to reverse the words present in the string

C Program to reverse the words present in the string.  #include <stdio.h> #inclu…

Read more

C Program to reverse the letters in each word of the string

C Program to reverse the letters in each word of the string We will see two methods : 1…

Read more

C program to reverse the string

C program to reverse the string We will see two methods to reverse the string 1. Reverse …

Read more

C string concatenation

C program to concatenate Two strings Concatenation refers to the linking of two strings i…

Read more

Write a program to search a character in a string using pointer in C language

Write a program to search a character in a string using pointer in C language   #incl…

Read more

typedef in c | typedef with structure

Typedef in c Typedef is a keyword that is used to give an alternative name to the alr…

Read more