/*Copyright ElohimTov LLC*/ /* //Name: ElohimTov Solve Code - Hello World - Objective-C Solution //Problem: HackerRank - 30 Days of Code - Hello World //Current File: ElohimTovSolve_HelloWorld.(objc).txt //Compile-able File: ElohimTovSolve_HelloWorld.objc //Date: Created 02/11/2021; 12/31/2021. //Tale: ElohimTov Solve's Solution to HackerRank.com's // Hello World problem in Objective-C programming language. // Problem link at https://elohimtov.com/elohimtov.info. */ /* Enter your code here. Read input from STDIN. Print output to STDOUT */ # import int main(int argc, const char* argv[]) { //define string variables char helloWorld [15] = "Hello, World."; char inputString [50] = {0}; gets(inputString); //scanf("%s", inputString); //print output printf("%s\n%s", helloWorld, inputString); return 0; } /*Copyright ElohimTov LLC*/