Day 1 of 20 Day Challenge of Basic C programming Question|Program to Take Input From User and print

Sdílet
Vložit
  • čas přidán 27. 07. 2024
  • Hello Everyone Welcome to Embedded Board:
    Today is the Day -1 of 20 Day challenge, in this video i have dicuss the use of printf and scanf function in c programming by write a c program to take input from user and print them on screen
    If friends are you interested in learning arduino uno from scratch to advanced level with project guide
    then go and watch our arduino programming playist video
    Link for arduino playlist👇
    • Getting Started With A...
    If friends are preparing for c programming for interview
    then go and watch our interview question playist where i have explained important interview asked by interviewer.
    Link for interview question playlist👇
    • Interview Questions: O...
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    join and follow us on social website like Instagram and telegram:
    link of instgram below👇
    embeddedboa...
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    Link of Telegram below👇
    t.me/embeddedboard
    ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    if you want to daily pratice leetcode problem using c so follow us on telegram
    where i daily post c problem with next day solution and new question
    one place for all embedded solution "Embedded Board"

Komentáře • 3

  • @Kannadadahudgi
    @Kannadadahudgi Před 24 dny

    most of the times in c variables are declared under the main function ,
    what is use of declaring variables under header file only

    • @EmbbededBoard
      @EmbbededBoard  Před 23 dny +1

      When we declare a number under header then it said to be global declaration, in global declaration you can access define variable anywhere in whole code but if you define variable in main function then it said to local variable you canuse it in locally not in whole code or in any function

    • @Kannadadahudgi
      @Kannadadahudgi Před 19 dny +1

      @@EmbbededBoard thanks got it