Register and join over 40,000 other developers!
Recent Topics
-
The Game You Are Waiting For?
WendellHarper - Dec 06 2020 01:21 PM
-
Quora and Reddit Backlinks
WendellHarper - Dec 06 2020 01:14 PM
-
Delete account
pindo - Jul 23 2020 01:33 AM
-
Print specific values from dictionary with a specific key name
Siten0308 - Jun 20 2019 01:43 PM
-
Learn algorithms and programming concepts
johnnylo - Apr 23 2019 07:49 AM
Recent Blog Entries
Recent Status Updates
Popular Tags
- networking
- Managed C++
- stream
- console
- database
- authentication
- Visual Basic 4 / 5 / 6
- session
- Connection
- asp.net
- import
- syntax
- hardware
- html5
- array
- mysql
- java
- php
- c++
- string
- C#
- html
- loop
- timer
- jquery
- ajax
- javascript
- programming
- android
- css
- assembly
- c
- form
- vb.net
- xml
- linked list
- login
- encryption
- pseudocode
- calculator
- sql
- python
- setup
- help
- game
- combobox
- binary
- hello world
- grid
- innerHTML

100 ways to print out "Hello CodeCall"
Started by Turk4n, Feb 13 2009 01:07 PM
158 replies to this topic
#13
Guest_Jordan_*
Posted 15 February 2009 - 10:28 AM
#14
Posted 15 February 2009 - 12:47 PM
#10
C
C
#include <stdio.h>
int main(void){
printf("Hello CodeCall !");
return 0;
}
#15
Posted 15 February 2009 - 12:50 PM
#11
JS, but printing it instead of displaying it in a message box.
JS, but printing it instead of displaying it in a message box.

<script type="text/javascript"> document.write('Hello CodeCall'); </script>
If you enjoy reading this discussion and are thinking about commenting, why not click here to register and start participating in under a minute?
#16
Posted 15 February 2009 - 12:59 PM
#11
JS, but printing it instead of displaying it in a message box.<script type="text/javascript"> document.write('Hello CodeCall'); </script>
Need to be changed to...
document.write("Hello CodeCall");
#17
Posted 15 February 2009 - 01:41 PM
If you enjoy reading this discussion and are thinking about commenting, why not click here to register and start participating in under a minute?
#18
Posted 15 February 2009 - 02:25 PM
#19
Guest_Jaan_*
Posted 15 February 2009 - 02:38 PM
#12
<?php
$array = array("H", "e", "l", "l", "o", " ", "C", "o", "d", "e", "C", "a", "l", "l");
list($first, $second, $third, $fourth, $fifth, $sixth, $seventh, $eight, $ninth, $tenth, $eleventh, $twelfth, $thirteenth, $fourteenth) = $array;
echo $first."".$second."".$third."".$fourth."".$fifth."".$sixth."".$seventh."".$eight."".$ninth."".$tenth."".$eleventh."".$twelfth."".$thirteenth."".$fourteenth;
?>
#20
Posted 15 February 2009 - 03:14 PM
#13:
public class CodeCall { public static String sCODECALL = "Hello CodeCall"; public static void main(String[] args) { print(0); } public static void print(int i) { if (i == sCODECALL.length()) { System.out.println(); return; } System.out.print(sCODECALL.charAt(i)); print(i + 1); } }
#21
Guest_Jordan_*
Posted 15 February 2009 - 04:38 PM
#14:
<?php
$aryCodeCall[] = "Hello CodeCall";
print_r($aryCodeCall);
?>
#22
Posted 15 February 2009 - 05:03 PM
#15: nasm format x86 asm for linux.
section .data msg: db "Hello, Codecall!",10 len: dd $-msg section .bss section .text global _start _start: mov eax,4 mov ebx,1 mov ecx,msg mov edx,[len] int 80h mov eax,1 ;exit syscall mov ebx,0 int 80h
Watches: Nanoha, Haruhi, AzuDai. Listens to: E-Type, Dj Melodie, Nightcore.
"When people are wrong they need to be corrected. And then when they can't accept it, an argument ensues." - MeTh0Dz
"When people are wrong they need to be corrected. And then when they can't accept it, an argument ensues." - MeTh0Dz
#23
Posted 16 February 2009 - 12:33 AM
#16
Java
Java
public class CodeCall{ public static void main(String[] arg) { Hello(); } public static void Hello() { System.out.println("Hello CodeCall"); } }
#24
Posted 16 February 2009 - 12:55 AM
#17
$var = "Hello Codecall!";
echo $var;
I've returned...
Recommended from our users: Dynamic Network Monitoring from WhatsUp Gold from IPSwitch. Free Download