raster pushed a commit to branch master.

http://git.enlightenment.org/website/www-content.git/commit/?id=af08b961efc411ff5ee19e065aee9e31227ae227

commit af08b961efc411ff5ee19e065aee9e31227ae227
Author: Carsten Haitzler (Rasterman) <[email protected]>
Date:   Sun Jul 9 10:21:07 2017 +0900

    Revert "Wiki page start changed with summary [] by joe root"
    
    This reverts commit 10ddfc490d2b6432d560140b64c819d841caf233.
    
    SPAM.
---
 pages/docs/c/start.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pages/docs/c/start.txt b/pages/docs/c/start.txt
index 5bc56fb4..fd9abcc1 100644
--- a/pages/docs/c/start.txt
+++ b/pages/docs/c/start.txt
@@ -66,7 +66,7 @@ Now finally we return from the main function with the value 
0. The ''main()'' fu
 return 0;
 </code>
 
-You will notice a few things. 
[[https://assignmentau.com/business-assignment-help|Business Assignment Help]] 
First lines starting with ''#'' are commands, but don't have a '';''. This is 
normal because these lines are processed by the pre-processor. All code in C 
goes through the C pre-processor and this basically generates more code for the 
compiler to actually deal with. Other lines that are not starting a function, 
ending it or defining control end every statement in C with a '';'' ch [...]
+You will notice a few things. First lines starting with ''#'' are commands, 
but don't have a '';''. This is normal because these lines are processed by the 
pre-processor. All code in C goes through the C pre-processor and this 
basically generates more code for the compiler to actually deal with. Other 
lines that are not starting a function, ending it or defining control end every 
statement in C with a '';'' character. If you don't do this, the statement 
continues until a '';'' is found,  [...]
 
 Note that we can do comments for human-eyes-only that the compiler ignores by 
having the first 2 letters if any line be ''%%//%%'' excluding whitespace 
(spaces, tabs etc.). Everything until the end of the line on such lines will be 
ignored by the compiler. For comments stretching over multiple lines or only 
for a small section of a line, you can start such a comment with ''%%/*%%'' and 
that comment will continue for as long as needed (across multiple lines) until 
a matching ''%%*/%%'' is found.
 

-- 


Reply via email to