Skip to main content

Posts

Showing posts with the label format specifier

WHAT IS CSS?ADVANTAGES, SYNTAX.

 CSS PROGRAMMING LANGAUGE                                                                     disadvantages CSS full form is cascade style sheets , which we call it says about how you should display the HTML elements on the screen. CSS tells us the style of the webpage let us take a simple example, if we build a home first we lay out the design that is known as the HTML language. Where the CSS means layout which means giving instructions on how the furniture should be nothing but the CSS. For example if we take PayPal we can see that the background color blue says the CSS background-color property. Netflix is also the best way of saying  CSS property, but if we remove it will be a normal webpage but with the red color and the black plus symbols it looks like the best webpage. Versions of CSS There are differen...

DATA TYPES IN C? PROGRAMS FOR DATA TYPE

DATA TYPES different data types  D ata types in C specify the type of data that can be stored in computer memory and also specify the set of values and operations that can be applied to those values. It also specifies the type of data that can be returned, which is a collection of data with fixed values with meaning and characteristics. DIFFERENT DATA TYPES T here are different data types in the c language : The "int" data type is used to store integers, mostly non-decimal numbers for example,-34,56, etc. "Float" data type is used to store decimal numbers, for eg:- 345.6,5.6,34.5, etc. "char" is used to store characters(mostly an alphabet), for eg:-A, c, a, C, j. Now let us see how to write the syntax in a c program, the first step is  <data type>  which means the type of data that you want to store in the computer memory. We need to specify the second step. Which is to give the space and then say the name of the variable that is with which variabl...