3. Write a c program to delete the all consonants from given string.
9. Write a c program to print the string from given character.
10. Write a c program to reverse a string
11. Reverse a string using recursion in c
12. String concatenation in c without using strcat
13. How to compare two strings in c without using strcmp
14. String copy without using strcpy in c
15. Convert a string to ASCII in c
10. Write a c program to reverse a string
11. Reverse a string using recursion in c
12. String concatenation in c without using strcat
13. How to compare two strings in c without using strcmp
14. String copy without using strcpy in c
15. Convert a string to ASCII in c
10 comments:
Thanx for da GUIDE in all programs GOD BLESS U.
c program to calculate 8 bit crc
u missed the & for scanf
when using string, you don't need to use & :D
great man keep it up?
Write a program that takes a string as input and generates an encoded string as output. Each letter of the input string is encoded by a given rule. Numerical value (1 for A, 2 for B, 10 for J and so on) of the letters are used to define the rules for encoding. The rules for generating codes are as follows:
A – E
Add 3 in its numerical value.
U -- Z
Find the largest integer factor of its numerical value less than the value itself. Multiply it by 12.
For Z, numerical value is 26, largest integer factor of 26 is 13 so, (13*12) is 156 which wraps around all the alphabets 6 full times and ends on Z.
For B,Y, encoded value will be E, H.
this question is of encryption can anyone solve this?
I'm a complete beginner but I wanted to share my try at this program.
#include
main()
{
for(int x; (x = getchar()) != EOF; printf("%d ", x));
}
I just thought this would be worth sharing since the program in the post seems pretty long for something so simple.
Weird, it cut out certain parts... Here's a link then: https://glot.io/snippets/eems3nicq4
please give a method to store the ascii value in another array as i have to use the ascii value further in program
Python Training in Chennaii
I am glad that I have visited this blog. Really helpful, eagerly waiting for more updates
Post a Comment