So- my program does not stop on condition (str2[o] != \'+\') So if anyone knows why and how to fix it it will help me ( :.
this is My code -
#include <
while(str2[o] != '+') { str2[o] = str3[w]; o++; w++; }
Assume o == x. You're assigning value to str2[x]. In while, you are seeing if str2[x+1] == '+', but str2[x+1] is empty.