Posts

Notes on Compiler and Interpreter in C Programming

  Notes on Compiler and Interpreter in C Programming  lecture link -  https://youtu.be/SsFJ7KnHaEM **Compiler:** - Translates the entire C program into machine code before execution. - Generates an executable file that can be run independently. - Performs lexical, syntactic, and semantic analysis. - Optimizes code during compilation for better performance. - Errors are detected and reported after the whole program is analyzed. - Compilation process can be time-consuming, but execution of the compiled program is faster. - Examples of C compilers: GCC (GNU Compiler Collection), Clang, MSVC (Microsoft Visual C++). **Interpreter:** - Translates and executes the C program line by line. - Does not produce an intermediate executable file. - Executes the code immediately, which can be useful for debugging. - Slower execution compared to compiled code since translation occurs during runtime. - Errors are detected and reported line by line, which can be easier for debugging specific issues. - Le
Image
 Captcha using JavaScript  captcha.html <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Document </ title >     < link rel = "stylesheet" href = "style.css" > </ head > < body onload = " generate ()" >     < div id = "user-input" class = "inline" >         < input type = "text" id = "submit" placeholder = "captchacode" >     </ div >     < div class = "inline" onclick = " generate " >         < i class = "fas-fa-sync" ></ i >     </ div >     < div id = "image" class = "inline" selectable = "False" ></ div >     < input type = "submit" id =
Image
 JavaScript Form validation   registration.html <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Registration </ title >     < link rel = "stylesheet" href = "style.css" > </ head > < body >     < div class = "title" > REGISTRATION FORM </ div >     < div class = "form" name = "formdiv" >         < form name = "myform" method = "post" action = "https://www.nsec.ac.in/" onsubmit = " return validateform ()" >             < div class = "element" name = "inputdiv" > Name: < input type = "text" name = "name" ></ div >             < div class = "element" > Address: &
Image
  JAVASCRIPT ARRAY <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Document </ title >     < script > ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////         const staffdetail = [             { name : "Gourab Das" , age : 20 , salary : 80000 , currency : "INR" },             { name : "Abhisek ck" , age : 20 , salary : 60000 , currency : "INR" },             { name : "Rahul k" , age : 20 , salary : 90000 , currency : "INR" },             { name : "Jahir" , age : 20 , salary : 100000 , currency : "INR" },             { name : "Anamitra" , age : 20 , salary : 20000 , currency : "INR&qu

Disclaimer

Disclaimer for Sourcify If you require any more information or have any questions about our site's disclaimer, please feel free to contact us by email at sourcify2023@gmail.com.  Disclaimers for Sourcify All the information on this website - https://sourcifyblog.blogspot.com/ - is published in good faith and for general information purpose only. Sourcify does not make any warranties about the completeness, reliability and accuracy of this information. Any action you take upon the information you find on this website (Sourcify), is strictly at your own risk. Sourcify will not be liable for any losses and/or damages in connection with the use of our website. From our website, you can visit other websites by following hyperlinks to such external sites. While we strive to provide only quality links to useful and ethical websites, we have no control over the content and nature of these sites. These links to other websites do not imply a recommendation for all the content found o

Terms and Conditions

Terms and Conditions Last updated: March 26, 2024 Please read these terms and conditions carefully before using Our Service. Interpretation and Definitions Interpretation The words of which the initial letter is capitalized have meanings defined under the following conditions. The following definitions shall have the same meaning regardless of whether they appear in singular or in plural. Definitions For the purposes of these Terms and Conditions: Affiliate means an entity that controls, is controlled by or is under common control with a party, where "control" means ownership of 50% or more of the shares, equity interest or other securities entitled to vote for election of directors or other managing authority. Country refers to: West Bengal, India Company (referred to as either "the Company", "We", "Us" or "Our" in this Agreement) refers to Sourcify. Device means any device that can access the Service such as a

Contact us

Loading…