| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 50
» Latest member: jenis
» Forum threads: 4,492
» Forum posts: 4,495
Full Statistics
|
| Online Users |
There are currently 1480 online users. » 0 Member(s) | 1477 Guest(s) Bing, Applebot, Yandex
|
| Latest Threads |
SELECT statement with MS ...
Forum: MS Access SQL Tutorials
Last Post: Qomplainerz
07-27-2023, 03:35 PM
» Replies: 0
» Views: 2,375
|
SELECT statement with the...
Forum: MS Access SQL Tutorials
Last Post: Qomplainerz
07-27-2023, 03:31 PM
» Replies: 0
» Views: 1,673
|
Creating hyperlinks in HT...
Forum: HTML5 Tutorials
Last Post: Qomplainerz
07-27-2023, 01:23 PM
» Replies: 0
» Views: 2,067
|
What's new in HTML5?
Forum: HTML5 Tutorials
Last Post: Qomplainerz
07-27-2023, 12:48 PM
» Replies: 0
» Views: 1,830
|
What is HTML5?
Forum: HTML5 Tutorials
Last Post: Qomplainerz
07-27-2023, 12:43 PM
» Replies: 0
» Views: 1,539
|
Neck isometric exercises
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:44 AM
» Replies: 0
» Views: 2,014
|
Shoulder shrug
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:43 AM
» Replies: 0
» Views: 1,465
|
Neck retraction
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:43 AM
» Replies: 0
» Views: 1,519
|
Neck flexion and extensio...
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:42 AM
» Replies: 0
» Views: 1,662
|
Neck rotation
Forum: Exercises
Last Post: Qomplainerz
07-27-2023, 11:42 AM
» Replies: 0
» Views: 1,616
|
|
|
| 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;
}
|
|
|
|