Answer Posted / kanimozhi91
Linux/Unix
* Pre-requisite : Before compiling check if gcc package is installed, if not install it either by using apt-get install/yum install based on the Linux kernel.
* Once installed, save the program as hello.c
* Compile it using gcc hello.c which will produce object file a.out
* Finally run it as ./a.out
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is c mainly used for?
What is the size of enum in c?
Explain b+ tree?
Can a variable be both static and volatile in c?
Was 2000 a leap year?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
what does static variable mean?
What is the importance of c in your views?
How will you find a duplicate number in a array without negating the nos ?
Write a program in c to replace any vowel in a string with z?
Implement bit Array in C.
Why is c so important?
Is array name a pointer?
Are the outer parentheses in return statements really optional?
What is the benefit of using an enum rather than a #define constant?