[#1] Hello World 1st programme [C - Language] (codewithharry-#3)

  [Day #1]  C - Language 1st programe {Hello World}



First line 

#include <stdio.h>

Use - eski help se Progrmme run krega.



Second Line

int main()

Use - es funtion se progrmme start hoti hai

"int" means integer hota hai

[every funtion have return value ]

es funtion ke pass jo main funtion hai vo Int return krega And jo return krta hai vo OS ke pas jayega. 


Third Line

printf

Use - 'Printf'  header file (#include<stdio.h>) se use hota hai

"printf"  ka use Display pr print/show krta hai (Output).


Fourth line {last line}

return 0;

Use - agr sb thik hua to yeh OS ko zero{0} dega.


Programmme End



๐Ÿ‘‰ All Codes ๐Ÿ‘ˆ

#include <stdio.h>

int main(int argcchar const *argv[])
{
    printf("Hello WorlD\n");
    return 0;
}


Click Here ๐Ÿ‘‡  to Download the File.


๐Ÿ‘‰Google drive - Download

๐Ÿ‘‰GitHub - Download 



                                                              


________00000000000___________000000000000_________

______00000000_____00000___000000_____0000000______

____0000000_____________000______________00000_____

___0000000_______________0_________________0000____

__000000____________________________________0000___

__00000______________Jarvis_____________ 0000__

_00000______________________________________00000__

_00000_____________________________________000000__

__000000_________________________________0000000___

___0000000______________________________0000000____

_____000000____________________________000000______

_______000000________________________000000________

__________00000_____________________0000___________

_____________0000_________________0000_____________

_______________0000_____________000________________

_________________000_________000___________________

_________________ __000_____00_____________________

______________________00__00_______________________

________________________00_________________________







C Compiler link - https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/installer/mingw-w64-install.exe/download

Comments