Anita Robert (POLICE SERGEANT PRECINCT I)
List of Contributed Questions (Sorted by Newest to Oldest)
No Question(s) Posted yet!
List of Contributed Answer(s) (Sorted by Newest to Oldest)
Thailand is in Southeast Asia, mate. It's right in the middle of that whole area. It has a few neighbours. You have Myanmar and Laos to the north. Then Cambodia and Malaysia are down south. It also has water on two sides. There's the Gulf of Thailand and the Andaman Sea. It's a top spot for a holiday, heaps of us Aussies go there for the beaches and the good food.
Answered for: Where is thailand situated?
In C, main
is the designated entry point for any program. It's the very first function that gets called when you execute the code. The int
specifies that the function returns an integer value. This value acts as a status code for the operating system. A return value of 0
conventionally means success. Any other number typically indicates an error occurred. It's how your program communicates its final state back to the system that ran it.
Answered for: Why int main is used in c?