Posts

CSS Tags From A to Z

A align-content Specifies the alignment between the lines inside a flexible container when the items do not use all available space align-items Specifies the alignment for items inside a flexible container align-self Specifies the alignment for selected items inside a flexible container all Resets all properties (except unicode-bidi and direction) animation A shorthand property for all the  animation-*  properties animation-delay Specifies a delay for the start of an animation animation-direction Specifies whether an animation should be played forwards, backwards or in alternate cycles animation-duration Specifies how long an animation should take to complete one cycle animation-fill-mode Specifies a style for the element when the animation is not playing (before it starts, after it ends, or both) animation-iteration-count Specifies the number of times an animation should be played animation-name Specifies a name for the @keyframes animation animation-play-state Specif

C++(First Tutorial)

Image
Hey there today its our first day of the tutorials of c++  I believe that   U are all familiar with the concepts of C language and Now its turn for the Next step Of   C++ which is infact a object oriented processing language AKA- OOPS in short so today we will  The concepts of OOPs Object oriented design started right from the moment computers were invented. Programming was there, and programming approaches came into the picture. Programming is basically giving certain instructions to the computer. At the beginning of the computing era, programming was usually limited to machine language programming. Machine language means those sets of instructions that are specific to a particular machine or processor, which are in the form of 0’s and 1’s. These are sequences of bits (0100110…). But it’s quite difficult to write a program or develop software in machine language. It’s actually impossible to develop software used in today’s scenarios with sequences of bits. This was the ma

/*WAP TO SORT NUMBER */

/*WAP TO SORT NUMBER */ #include<stdio.h> #include<conio.h> void main() { int a[10]; inti,j,n,k; clrscr(); printf("enter no of elements"); scanf("%d",&n); for(i=0;i<n;i++) { printf("enter elements"); scanf("%d",&a[i]); } for(i=0;i<n-1;i++) { for(j=0;j<n-i-1;j++)   { if(a[j]>a[j+1])   {    k=a[j]; a[j]=a[j+1]; a[j+1]=k;   }   } } printf(" after sorting is \n"); for(i=0;i<n;i++)   { printf("%d",a[i]);   } getch(); } /***OUTPUT*** how many no5 enter a no1 2 3 7 6 no sorting is 12367 **************/