+ 21
how many different ways can you print "hello world !" (in c language) ??
code should be unique and creative .
6 Respostas
+ 12
https://code.sololearn.com/cgXd4YWmZRst/?ref=app
+ 10
Here is a different way
https://code.sololearn.com/cSU5xH6itTEZ
+ 10
With no <stdio.h> and (;)
https://code.sololearn.com/c7iYyCBW1KgS/?ref=app
+ 6
I made one version in c++
https://code.sololearn.com/cJ1pMeZUuDOc/?ref=app
+ 1
1) pintf("hello world")
2)#include <stdio.h> int main () { char greeting[6] = {'H', 'e', 'l', 'l', 'o', '\0'}; printf("%s\n", greeting ); return 0; }
and with array and for!