Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 904 online users. » 0 Member(s) | 900 Guest(s) Bing, Yandex, Applebot, DuckDuckGo
|
Latest Threads |
SELECT statement with MS ...
Forum: MS Access SQL Tutorials
Last Post: Qomplainerz
07-27-2023, 03:35 PM
» Replies: 0
» Views: 1,506
|
SELECT statement with the...
Forum: MS Access SQL Tutorials
Last Post: Qomplainerz
07-27-2023, 03:31 PM
» Replies: 0
» Views: 874
|
Creating hyperlinks in HT...
Forum: HTML5 Tutorials
Last Post: Qomplainerz
07-27-2023, 01:23 PM
» Replies: 0
» Views: 1,252
|
What's new in HTML5?
Forum: HTML5 Tutorials
Last Post: Qomplainerz
07-27-2023, 12:48 PM
» Replies: 0
» Views: 942
|
What is HTML5?
Forum: HTML5 Tutorials
Last Post: Qomplainerz
07-27-2023, 12:43 PM
» Replies: 0
» Views: 846
|
Neck isometric exercises
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:44 AM
» Replies: 0
» Views: 1,198
|
Shoulder shrug
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:43 AM
» Replies: 0
» Views: 768
|
Neck retraction
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:43 AM
» Replies: 0
» Views: 754
|
Neck flexion and extensio...
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:42 AM
» Replies: 0
» Views: 857
|
Neck rotation
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:42 AM
» Replies: 0
» Views: 818
|
|
|
Multi Line Comments in C 18 |
Posted by: Qomplainerz - 04-06-2022, 02:24 PM - Forum: C 18 Tutorials
- No Replies
|
 |
Multi line comments span over two or more lines and are ignored by the compiler.
In C they start with a slash and an asterisk /* and they end with an asterisk and a slash */.
In this case we do NOT need a semicolon at the end of the line.
Example:
#include <stdio.h>
int main()
{
/*
This is
a multi
line comment
*/
return 0;
}
|
|
|
Single Line Comments in C 18 |
Posted by: Qomplainerz - 04-06-2022, 02:22 PM - Forum: C 18 Tutorials
- No Replies
|
 |
Single line comments span over one line only and are ignored by the compiler.
In C they can be done with a double Slash.
In this case we do NOT need a semicolon at the end of the line.
Example:
#include <stdio.h>
int main()
{
// This is a single line comment
return 0;
}
|
|
|
|