C_Language_Coding
1.34K subscribers
4 files
31 links
This channel will serve you C language program from basic to advance in a serial order that help you in understand the basic and crack any IT examination in easy way .

Invite other to Subscribe this channel on telegram
@Programming_and_Coding
Download Telegram
98. Program to copy string without using strcpy() function.

#include<stdio.h>
#include<conio.h>

void strCopy(char[], char[]);

void main()
{

char str1[100], str2[100];

printf("Enter any string: ");
scanf("%s", str1);

strCopy(str1, str2);

printf("After copying: %s", str2);

getch();
}

void strCopy(char str1[], char str2[])
{

int i = 0;

while (str1[i] != '\0')
{
str2[i] = str1[i];
i++;
}

str2[i] = '\0';

}
@programming_and_coding
99. Program to count frequency of characters in a string.

#include<stdio.h>
#include<string.h>
#include<conio.h>

void main()
{
char str[1500];
int c = 0, count[26] = {0};
clrscr();

printf("Enter a string : ");
gets(str);

while (str[c] != '\0')
{

if (str[c] >= 'a' && str[c] <= 'z')
count[str[c] - 'a']++;
c++;
}

for (c = 0; c < 26; c++)
{
if (count[c] != 0)
printf("%c occurs %d times in the string.\n", c + 'a', count[c]);
}
getch();
}
@programming_and_coding
100. Program to count total number of uppercase and lowercase in a string.

#include<stdio.h>
#include<string.h>
#include<conio.h>

void main()
{
int upper = 0, lower = 0;
char ch[80];
int i;
clrscr();

printf("Enter string : ");
gets(ch);

i = 0;
while (ch[i] != '\0')
{
//uppercase counter
if (ch[i] >= 'A' && ch[i] <= 'Z')
{
upper++;
}

//lowercase counter
if (ch[i] >= 'a' && ch[i] <= 'z')
{
lower++;
}

i++;
}

printf("\nUppercase Letters : %d", upper);
printf("\nLowercase Letters : %d", lower);

getch();
}
@programming_and_coding
101. Program to calculate the length of string.

#include<stdio.h>
#include<conio.h>
#include<string.h>

void main()
{
char a[100];
int length;
clrscr();
printf("\nEnter a string to calculate it's length : ");
gets(a);

length = strlen(a);

printf("\nLength of entered string is : %d", length);

getch();
}
@programming_and_coding
Data_Structures_Using_C.pdf
18.3 MB
Oxford book
Data_structure using c language

#Data_Structure

Join us on telegram:-
@programming_and_coding
102. Program to calculate the length of string without using strlen() function.

#include<stdio.h>
#include<conio.h>

void main()
{
char s[1000], i;
clrscr();

printf("Enter a string : ");
scanf("%s", s);


for (i = 0; s[i] != '\0'; ++i);

printf("Length of string : %d", i);
getch();
}

//for more update join us on telegram
@programming_and_coding
Accenture Off Campus Drive For 2021 Batch PAN India

Apply Link:-πŸ‘‡

https://indiacampus.accenture.com/register/accenture/vspn1/apply/?event=2695&job=1122

Join us :-@programming_and_coding
#Update_6
100 aptitude trick(102pgs)s.pdf
2.1 MB
100 Aptitude Shortcuts to Ace any Quantitative Test


@programming_and_coding
103. Program to check the palindrome of string.

#include<stdio.h>
#include<conio.h>
#include<string.h>

void main()
{
char text[100];
int begin, middle, end, length = 0;
clrscr();

printf("Enter the string to check if it is a palindrome : \n");
gets(text);

while (text[length] != '\0')
{
length++;
}
end = length - 1;
middle = length / 2;

for (begin = 0; begin < middle; begin++)
{
if (text[begin] != text[end])
{
printf("\nString is not a palindrome.");
break;
}
end--;
}
if (begin == middle)
printf("\nString is Palindrome.");

getch();
}
@programming_and_coding
104. Program to check the palindrome of word using array.

#include<stdio.h>
#include<conio.h>
#include<string.h>

void main()
{
char word[100];
int length, counter;
clrscr();

printf("Enter a word : ");
scanf("%s", word);
length = strlen(word);
int flag = 1;

for (counter = 0; counter < length / 2 && flag; counter++)
{
if (word[counter] != word[length - counter - 1])
{
flag = 0;
break;
}
}
if (flag)
{
printf("\n%s is a palindrome.", word);
}
else
{
printf("\n%s is NOT a palindrome.", word);
}
getch();
}
@programming_and_coding
Internship Alert ⚑

1.) Amazon is Hiring Software Development Engineer Intern
Apply:
https://lnkd.in/e33CbbG

2.) Dassult Systems is Hiring Software Development Intern
Apply:
https://lnkd.in/g-Z-6Rz
New Grad 2021*

Join:- @programming_and_coding
For more update instantly
105. Program to remove white space in string.

#include<string.h>
#include<stdio.h>
#include<conio.h>

void main()
{
int i = 0, j = 0, len;
char buff[50];
clrscr();

printf("Enter String with white space : ");
gets(buff);

len = (int) strlen(buff);

while (i != len)
{
if (buff[i] != ' ')
buff[j++] = buff[i];
i++;
}
buff[j] = 0;

printf("\nYour String is : %s.", buff);
getch();
}
@programming_and_coding
PHP & MySQL - Certification Course for Beginners
Learn to Build Database Driven Web Applications using PHP & MySQL
Price : β‚Ή12,800 FREE
Use Coupon : YOUACCEL34521

Course Link - https://www.udemy.com/course/php-mysql-certification-course-for-beginners/



Coupon is working at the time of posting

#Update8
Join:- @programming_and_coding
106. Program to reverse the string.

#include<stdio.h>
#include<conio.h>
#include<string.h>

char *strrev(char *str)
{
char *p1, *p2;

if (!str || !*str)
return str;
for (p1 = str, p2 = str + strlen(str) - 1; p2 > p1; ++p1, --p2)
{
*p1 ^= *p2;
*p2 ^= *p1;
*p1 ^= *p2;
}
return str;
}

void main()
{
char arr[100];
clrscr();

printf("\nEnter a string to reverse : ");
gets(arr);

strrev(arr);

printf("\nReverse of entered string is : %s", arr);

getch();
}
Join @programming_and_coding
107. Program to reverse the string using pointer.

#include<stdio.h>
#include<conio.h>

void main()
{
char str_array[10000], *ptr;
int i, len;
clrscr();

printf("Enter a string : ");
gets(str_array);
ptr = str_array;

for (i = 0; i < 10000; i++)
{
if (*ptr == '\0')
break;
ptr++;
}

len = i;
ptr--;
printf("\nReversed String is : ");
for (i = len; i > 0; i--)
{
printf("%c", *ptr--);
}
getch();
}

@programming_and_coding
108. Program to sort the strings.

#include<stdio.h>
#include<conio.h>
#include<string.h>

void main()
{
int i, j, n;
char str[20][20], temp[20];
clrscr();

printf("Enter the number of string to be sorted : ");
scanf("%d", &n);

for (i = 0; i <= n; i++)
gets(str[i]);

for (i = 0; i <= n; i++)
for (j = i + 1; j <= n; j++)
{
if (strcmp(str[i], str[j]) > 0)
{
strcpy(temp, str[i]);
strcpy(str[i], str[j]);
strcpy(str[j], temp);
}
}

printf("\nSorted string :");
for (i = 0; i <= n; i++)
{
puts(str[i]);
}
getch();
}
@programming_and_coding
πŸ”°Adobe MEGA MOD PackπŸ”°

πŸ”₯Contents of the MEGA Pack-

πŸ‘‰Adobe Premiere Pro CC 2018
πŸ‘‰Adobe Prelude CC 2018
πŸ‘‰Adobe Lightroom CC 2018
πŸ‘‰Adobe Lightroom Classic CC 2018
πŸ‘‰Adobe Photoshop CC 2018
πŸ‘‰Adobe Muse CC 2018
πŸ‘‰Adobe Media Encoder CC 2018
πŸ‘‰Adobe InDesign CC 2018
πŸ‘‰Adobe InCopy CC 2018
πŸ‘‰Adobe Illustrator CC 2018
πŸ‘‰Adobe Dreamviewer CC 2018
πŸ‘‰Adobe Dimensions CC 2018
πŸ‘‰Adobe Character Animator CC 2018
πŸ‘‰Adobe Bridge CC 2018
πŸ‘‰Adobe Audition CC 2018
πŸ‘‰Adobe Animate CC 2018
πŸ‘‰Adobe After Effects CC 2018


βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
πŸ”₯ Download Link :- https://drive.google.com/drive/u/0/folders/1yDGZ4lOhPiEkG7bG8M8qs5X-E7_I-85d
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Only on @programming_and_coding

πŸ“ŒNote: The Above Softwares are Provided in Google Drive! So, Download Them ASAP!