Computer Science, asked by kotakotanibas, 7 months ago

write a program to to print "hallow world c" in c and python computer language​

Answers

Answered by Anonymous
4

Answer Software Requirement

Software RequirementThe following software(s) are required in the computer to begin with C programming.

Software RequirementThe following software(s) are required in the computer to begin with C programming.Text Editor

Software RequirementThe following software(s) are required in the computer to begin with C programming.Text EditorA “Text Editor” is software to write or modify plain text. We’ll be using it to write the Source Code of C program. There are several “text editors (e.g. Notepad, Code Writer etc.)” and “IDE’s (e.g. Eclipse, Codeblocks etc.)” available and you are free to choose from them.

Software RequirementThe following software(s) are required in the computer to begin with C programming.Text EditorA “Text Editor” is software to write or modify plain text. We’ll be using it to write the Source Code of C program. There are several “text editors (e.g. Notepad, Code Writer etc.)” and “IDE’s (e.g. Eclipse, Codeblocks etc.)” available and you are free to choose from them.Though, it is strongly advised to use a “Text Editor” instead of an IDE if you are new to C programming. We recommend Notepad++ or Microsoft Visual Studio Code for beginners.

Software RequirementThe following software(s) are required in the computer to begin with C programming.Text EditorA “Text Editor” is software to write or modify plain text. We’ll be using it to write the Source Code of C program. There are several “text editors (e.g. Notepad, Code Writer etc.)” and “IDE’s (e.g. Eclipse, Codeblocks etc.)” available and you are free to choose from them.Though, it is strongly advised to use a “Text Editor” instead of an IDE if you are new to C programming. We recommend Notepad++ or Microsoft Visual Studio Code for beginners.Compiler

Software RequirementThe following software(s) are required in the computer to begin with C programming.Text EditorA “Text Editor” is software to write or modify plain text. We’ll be using it to write the Source Code of C program. There are several “text editors (e.g. Notepad, Code Writer etc.)” and “IDE’s (e.g. Eclipse, Codeblocks etc.)” available and you are free to choose from them.Though, it is strongly advised to use a “Text Editor” instead of an IDE if you are new to C programming. We recommend Notepad++ or Microsoft Visual Studio Code for beginners.CompilerA compiler is a tool which converts the “Source Code” of C program into “Machine Code” (also called as Executable Code). There are several C compilers available. We recommend using MINGW GCC Compiler.

Software RequirementThe following software(s) are required in the computer to begin with C programming.Text EditorA “Text Editor” is software to write or modify plain text. We’ll be using it to write the Source Code of C program. There are several “text editors (e.g. Notepad, Code Writer etc.)” and “IDE’s (e.g. Eclipse, Codeblocks etc.)” available and you are free to choose from them.Though, it is strongly advised to use a “Text Editor” instead of an IDE if you are new to C programming. We recommend Notepad++ or Microsoft Visual Studio Code for beginners.CompilerA compiler is a tool which converts the “Source Code” of C program into “Machine Code” (also called as Executable Code). There are several C compilers available. We recommend using MINGW GCC Compiler.Please refrain from using a very old compiler such as “Turbo C”. Also, note that the availability of multiple compilers of C doesn’t mean there are multiple C language(s). They would compile the C code almost the same way.

Software RequirementThe following software(s) are required in the computer to begin with C programming.Text EditorA “Text Editor” is software to write or modify plain text. We’ll be using it to write the Source Code of C program. There are several “text editors (e.g. Notepad, Code Writer etc.)” and “IDE’s (e.g. Eclipse, Codeblocks etc.)” available and you are free to choose from them.Though, it is strongly advised to use a “Text Editor” instead of an IDE if you are new to C programming. We recommend Notepad++ or Microsoft Visual Studio Code for beginners.CompilerA compiler is a tool which converts the “Source Code” of C program into “Machine Code” (also called as Executable Code). There are several C compilers available. We recommend using MINGW GCC Compiler.Please refrain from using a very old compiler such as “Turbo C”. Also, note that the availability of multiple compilers of C doesn’t mean there are multiple C language(s). They would compile the C code almost the same way.Y ou don’t need to go for technical and other differences of compilers and “versions of C” at this point; those are beyond the scope of this tutorial series.Now save it with name as “HelloWorld” and extension “.c” i.e. “HelloWorld.c” on desktop or any folder/directory you like (e.g. ‘D:\Programming_In_C’).

.

.:

Answered by Anonymous
11

---------------------------------------------

Hello World !” is considered to be the one of the simplest piece of programs possible in almost all computer languages, that outputs or displays “Hello, World !” to the user. It is often exemplify the basic syntax of a programming language for a working program and used to introduce beginning programmers to a programming language.

Similar questions