"موقعیت کلمه در جمله" به زبان #سی_پلاس_پلاس
// SAMAVi www.samavi.info
#include <iostream.h>
#include <conio.h>
#include <stdio.h>
int lenstr(char str[]);
int findstr(char str[],char sub[]);
void main (void)
{
char str[100],sub[100];
cout<< "Enter string: ";
gets(str);
cout<<...