カンマ区切りの値を文字列から一緒に追加しようとしています。私はコンマを削除する必要があるように感じる。これはストリングストリームのケースですか? string str = "4, 3, 2"
//Get individual numbers
//Add them together
//output the sum. Prints 9
#include<stdio.h>
#include<conio.h>
#include<string.h>
int main() { {
char sir[3000];
int i;
int suma = 0;
int lungime;
scanf("%s", sir);
lungime = strlen(sir);