Your IP : 216.73.216.40


Current Path : /var/www/html/venkat/old/
Upload File :
Current File : /var/www/html/venkat/old/lit2015026_3.c

#include<stdio.h>
void main()
{
	char str1[50];
	
	printf("Enter the string");
	scanf("%s",&str1);
void remove(char str[])
{       int i=0;
	char (*s)[50]=&str;
	char str2[50];
	for(i=0;*(*str)[i]!='\0';i++)
	{
		if(*(*str)[i]>='a'||*(*str)[i]<='z'&&*(*str)[i]>='A'||*(*str)[i]<='Z')
		{
			*(*str)[i]=str2[i];
		}
	}
	printf("%s"str2);
}
}