/* Write a C program that uses functions to perform the following operations:
To delete n Characters from a given position in a given string.
*/
#include <stdio.h>
#include <conio.h>
#include <string.h>
void delchar(char *x,int a, int b);
void main()
{
char string[10];
int n,pos,p;
clrscr();
puts("Enter the string");
gets(string);
For more Click
To delete n Characters from a given position in a given string.
*/
#include <stdio.h>
#include <conio.h>
#include <string.h>
void delchar(char *x,int a, int b);
void main()
{
char string[10];
int n,pos,p;
clrscr();
puts("Enter the string");
gets(string);
For more Click
0 comments:
Post a Comment