edited by
353 views
0 votes
0 votes

why this program given run time error 

#include<stdio.h>
int main ( )
{
int x = 2, y = 5;
if (x < y)
return (x = x+y);
else
printf(“%d “,x);
printf(“%d”,y);
}

https://ideone.com/AqYv40

edited by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
1 votes
1 votes
1 answer
2
Sanjay Sharma asked Jan 8, 2017
3,764 views
A condition that is caused by run time error in a computer program is known as a)Fault b)Exceptionc)Syntax errord)Semantic error
0 votes
0 votes
1 answer
3