Keywords: C programming, strings, character arrays, arrays, concatenation of strings, comparison of strings, length of strings, input/output of strings, and string format specifiers. One of the most widely used programming languages for a variety of applications is C. The effective handling of strings is one of the main strengths of C programming. A string in C programming is just an array of characters that are terminated by the null character ('0'). Character arrays, commonly known as string arrays, are necessary when w...
Hello guys this is the first chapter of c programming , In this chapter we will learn about basics of c programming ; Here we go to learn c language, Chapter 1 Variable, contest &keywords Variable :- A Variable is a container which stores a 'value' Like in kitchen we use containers storing rice ,Dal,Suger etc. Similarly, To that Variable in c Stores Value of a constast . Example: A=3; //a is assinged"3" b=4.7; //b is assigned "4.7" c='A' ; //c is assinged "a" Rules of naming variable in C :- 1. First character must be an alphabet or underscore(_). 2. No commas , blanks allowed 3. No special symbol other than (_) allowed. 4. variable names are case sensitive We Must create meaningful variable names in our programs. This enhance raedabibly of our programs. Ques: What is variab...
Privacy Policy for Learn ABCD Privacy Policy Last updated: March 20, 2023 This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You. We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in accordance with this Privacy Policy. This Privacy Policy has been created with the help of the Privacy Policy Generator . 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 this Privacy Policy: Account means a unique account created for You to access our Service or parts of our Service. Affiliate means a...
Comments
Post a Comment