sum of two numbers

#include<stdio.h> void main() { int a,b,c; printf("enter two numbers"); scanf("%d%d",&a&b); c=a+b; printf("sum is %d",c); getch(); }

1 Response

the output gives error
There was an error processing your code!
Output:
================


Error Output:
================
standard_init_linux.go:219: exec user process caused: resource temporarily unavailable

Write a comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.