[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

#include <stdio.h> int main ( int argc , char * * argv

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 35
Thread images: 6

File: 1495046319328.png (429KB, 451x619px) Image search: [Google]
1495046319328.png
429KB, 451x619px
#include <stdio.h>
int
main
(
int
argc
,
char
*
*
argv
)
{
printf
(
"Hello, world!\n"
)
;
return
0
;
}


vs

#include <stdio.h>
int main(int argc,char**argv){printf("Hello, world!\n");return 0;}
>>
File: 1492412873819.png (216KB, 380x364px) Image search: [Google]
1492412873819.png
216KB, 380x364px
import std.stdio;

void main()
{
"Hello world".writeln;
}
>>
echo Hello world
>>
>>60580265
#include <stdio.h>

main()
{
printf ("Hello World\n");
}
>>
File: 1494822873736.gif (524KB, 500x620px) Image search: [Google]
1494822873736.gif
524KB, 500x620px
with Ada.Text_IO;

proceudre kyoko is
package IO renames Ada.Text_IO;
begin
IO.Put("Hellow World");
IO.New_Line;
end kyoko;
>>
>>60580265

public class HelloWorld
{
public static void main
(String[] args)
{
System
.out.
println
("Hello, World");
}
}
>>
print('Hello world!')

Easy
>>
File: 1470782519326.jpg (475KB, 852x973px) Image search: [Google]
1470782519326.jpg
475KB, 852x973px
>>60582672
Python fags not allowed here
>>>/v/
>>
fun main(args: arrayOf<String>){
println("Hello World!)
}
>>
perl -e "print 'Hello, world'"
>>
 ++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>. 
>>
>>60580265
 echo "Hello World" 
>>
#include <iostream>

int main()
{
std::cout << "Hello, World!\n";
}


C++ is a horrible language
>>
>>60582741
>i hate it because it is easy and friendly.
>>
>>60583052
>easy
Not an argument.
>friendly
Not an argument.
>>
File: 1494929329121.gif (265KB, 480x270px) Image search: [Google]
1494929329121.gif
265KB, 480x270px
>>60583052
>t. scriptkiddie
ur not welcomed here

+---------------+
| |
| * * |
|* * * * |
|* * *|
|* * *|
|* * * |
| * * * |
| * |
+---------------+

+---------------+
| |
|* * * |
|* * * |
| * *|
| * *|
|* * * |
|* * * * |
| * |
+---------------+

+---------------+
| |
|* ** * * |
|******* *** * |
| **** * * ***|
| **** * ******|
| ****** ** * |
| * * * * |
| * |
+---------------+

+---------------+
| |
|******* *** * |
|******* *** * |
| ** *|
|* * * *|
|******* ** * |
|******* *** * |
| * |
+---------------+

+---------------+
| |
|******* *** * |
|******* *** * |
| * * * *|
| * * * *|
|******* ** * |
|******* ** * |
| * |
+---------------+

+---------------+
| |
|***** * *** * |
|******* *** * |
| * * * * |
| * * * |
|****** ** * |
|****** ** * |
| * |
+---------------+

+---------------+
| |
| * * * |
|***** * ***** |
|***** ** * ***|
|***** ** * ***|
|******* * ** |
| * * * * |
| * |
+---------------+

+---------------+
| |
| |
| * * |
| * * |
| * |
| * |
| |
| |
+---------------+
>>
>>60583202
>I don't like it so you should go to another board!
that is not an argument either friendo
>>
>>60582672
Get on my level

"Hello world"
>>
>>60583029

stream syntax is shit, just go back to printf
>>
>>60583386
No.
>>
>>60583386
std::cout << 4 << 4;

44
std::cout << (4 << 4);

64
>>
>>60583942
your point being?
>>
File: 1468399008974.png (111KB, 317x317px) Image search: [Google]
1468399008974.png
111KB, 317x317px
>>60583052
>friendly
that's not true
>>
>>60584028
c++ sucks ass
>>
>>60583202
Fast code is worthless if you spend 90% of it's lifetime developing it to be efficient.

A dev time for run time tradeoff is not unreasonable. Get with the times grandpa.
>>
>>60582741
(format t "Fuck you for hating interpretted languages")
>>
echo hello world

Why dont you use scripts?
>>
>>60583942
printf("This is my line \n this is my other line.\n");

std::cout << "This is my line" << std::endl << "This is my other line." << std::endl ;

which one looks less like cancer anon.
>>
>>60584561
alias hello_world="echo hello world"
>>
@.str = private unnamed_addr constant [15 x i8] c"Hello, world!\0A\00"
declare i32 @puts(i8* nocapture) nounwind

define i32 @main()
{
%hcast = getelementptr [15 x i8], [15 x i8]* @.str, i64 0, i64 0
call i32 @puts(i8* %hcast)
ret i32 0
}
>>
>>60584561
>Not using MsgBox("Hello, world!")
>>
>>60584544
Use Nim. It's faster than python but it has a python syntax
>>
>using printf instead of puts for string literals
>>
>>60583308
You better get on mine

Hello world
>>
 
#include <u.h>
#include <libc.h>

void
main(int argc, char *argv[])
{
print("Hello, World\n");
exits(0);
}
Thread posts: 35
Thread images: 6


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.