diff --git a/README b/README index ce0acd6..209a10f 100644 --- a/README +++ b/README @@ -1,6 +1,10 @@ #include -int main() -{ -printf("hello world"); -return 0; -} + +void main() { + int a,b,c; + a=10; + b=30; + c=a+b; + printf("hello world"+c); + + }