Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

when i run C code in visual studio code it shows me jus t" running" in the output window and nothing else

#include<stdio.h>

int main(void) {

    double gasCost;
    int passengers;
    printf("enter passengers and price");
    scanf("%d %lf",&passengers,&gasCost);
    if(passengers==0) {
        printf("%.2lf",gasCost);
    } else {
        printf("%.2lf",(gasCost+1)/(passengers+1));
    }
}

[Running] cd "c:Usersprathvisual studio codeC" && gcc gascost.c -o gascost && "c:Usersprathvisual studio codeC"gascost

I am using MinGW compiler

please suggest some tips to get rid of this

question from:https://stackoverflow.com/questions/66061529/when-i-run-c-code-in-visual-studio-code-it-shows-me-jus-t-running-in-the-outpu

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...