0
Which variable has a detection range for "√", "×" or "÷"?
10 Antworten
0
char*
0
#include <stdio.h>
int main(){
char* a="hola";
printf("%s",a);
return 0;}
output:
hola
0
cout<<a;
output:
16-3829r....
0
For C the above
For C ++ the String or above
0
They didn't work
0
Happy year, apologize for the tardiness
https://code.sololearn.com/c3cG9VBMsXUF/?ref=app
0
Detailed explanation:
I couldn't compare the signs directly so I decided to transform them to integers. but since there were three char, the compiler gave me an error every time so I decided to transform the three char to obtain the desired results
0
Now if it serves
0
Now it's work