Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected typo in line 8 & 9 #32

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build-logic/004_strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

1. Write a program that reads two strings and append first string to the second. So if first string is Good second string is Morning , the program should print MorningGood

1. Program that reads string and count number of characters present in the string
1. Program that reads string and counts number of characters present in the string

1. Write a program that converts string like "124" to 124

Expand All @@ -18,7 +18,7 @@

1. A program that counts number of vowels and consonants in a String?

1. Write a program which receives a string str that calculates the length of a string and return true if the length is greater than 7 without using strlen()
1. Write a program which receives a string str then calculates the length of the string and return true if the length is greater than 7 without using strlen()

1. Write a program that takes two strings and copies smaller string into bigger string

Expand Down