Showing posts with the label malloc() in cShow all

c program to find the element repeating maximum times in an array

C program to find the element repeating maximum times in an array. #include<stdio.h&…

Read more

program to search for a character in a string

C program to search for a character in a string #include <stdio.h> int main ()…

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

Dynamic memory allocation in c

Dynamic memory allocation in c In c programming, we know the concept called an ar…

Read more