TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Md Nayeem
NA
75
23.8k
what is the problem in this programAfter compile and run
Aug 3 2017 5:43 AM
#include<stdio.h>
#include<conio.h>
void
main(){
int
x=0,y=0,result=0;
clrscr();
printf(
"enter first number:"
);
scanf(
"%d"
,&x);
printf(
"enter second number:"
);
scanf(
"%d"
,&y);
result=x+y;
printf(
"sum of 2 numbers:%d "
,result);
getch();
}
Reply
Answers (
2
)
Check on login page to enable / disable users
I am not getting proper output in this C program.