what "Debug Assertion Failed" mean and how to fix it, c++?
- by nonon
hi,
why this program gives me a "Debug Assertion Failed" Error Message while running
#include "stdafx.h"
#include "iostream"
#include "fstream"
#include "string"
using namespace std;
int conv_ch(char b)
{
int f;
f=b;
b=b+0;
switch(b)
{
case 48:
f=0;
break;
case 49:
f=1;
break;
case…