Tag: string

19
Feb
2016

Some string functions

puts() in c i will implement. Main job of this function is to print a new line…

13
Nov
2015

Length of a input string

#include<stdio.h> int main() { char country[200]; int length; while(1==scanf(“%s”,country)) { length=string_length(country); printf(“length:%d\n”,length); } return 0; } int…

12
Nov
2015

Uppercase to Lowercase

Lowercase to Uppercase #include<stdio.h> int main() { char country[]={‘b’,’a’,’n’,’g’,’l’,’a’,’d’,’e’,’s’,’h’}; int i,length; printf(“%s\n”,country); length=10; for(i=0;i<length;i++){ if(country[i]>=97 && country[i]<=122)…

13
Feb
2015

String Processing

নিজের কন্সেপ্ট ক্লিয়ার করতে এই পোস্ট টা দেয়া স্ট্রিং প্রসেসিং এর আগে ভাবছি পয়েন্টার আর অ্যারে কনসেপ্টটাও…