Data Types in C (part 2)
Data Types In C (part 1)
Rules of Declaring a Variable.....
Some Of The Important Rules To Declare VARIABLES In C.........
Variable (part 1)
variable in c...
In today's lesson,we are going to talk about variables in C programming. Think of a glass of water.If you want to drink some water, then you put water inside glass and drink it. You can think of a variable as a glass of water.As a glass can store water in it similarly variables can store some value in it.After storing the value,you are free to use this value in your program.
In reality, variables are simply names that points to some memory location.Thanks to the inventor of C language who makes it easy for us to store values in memory by simply using the name of our choice.You don't need to worry about at which location of the memory your value is stored. Your task is to just provide the name and internally it will point to some memory location.But there is one thing that we need to be sure about.You must have to declare variables before using it in your program.Declaration simple means,announcing the properties of the variable to the compiler. Here, by saying properties we mean that what will be the size of the variable and what will be the name of the variable Don't worry, it is not a very difficult job to do.You will see in a moment how easy it is to declare a variable.
There is one more term called definition of a variable,which means allocating memory to a variable.Most of the time declaration and definition will be done at the same time.But this is not always the case.It depends on the modifiers you had mentioned with the variables. We will talk about modifiers later and then we will also explain how declaration and definition is different for different modmodifier Let me give you an example of how to declare a variable.Here, the name of the variable is var and it has an integer data type.Data type simply means how much space a variable is going to occupy in the memory.Therefore by writing....... int var you are declaring a variable along with that you are requesting the compiler to allocate memory for this variable. Please note down on one thing here after int varwe have put a semicolon over here.This is very important.Because this is how your compiler separates one statement from the other.So don't forget to add a semicolon at the end of the variable.
Now, the memory location depends upon the type you use Here because in our example,we are using integer data type therefore it may take either two bytes of memory or may be four bytes of memory.It purely depends on the system you are working on. Again you don't have to worry about how much space is allocated to your variable.You only have to concentrate on the declaration and definition of the variable If you assign some value to a variable,at the time of declaration itself Then this thing is called initialization.This is how you will do initialization. Note- initialization of a variable doesn't mean that you cannot change the value of a variable afterwards in your code.If you want the value to be changed somewhere,then you can do that this clearly captures the meaning of variable.Variable in its pronunciation has word vary.Something that can vary over time.On the other hand constant is just the opposite.once defined will never change.
Let's see how we can change the value of the variable after initialization.Let me write down the code here.I am writing .........#include that is our header file because we have to print some output. Then I am declaring main function.Inside this main function,I'm first declaring a variable named var.Suppose I initialize it first to 3,and afterwards I change this value to 4.You can observe that again I have not written int var in this statement when I'm assigning value to it.because the memory is allocated to the variable once and defining it once again means you want to allocate memory again for the same name. And this is illegal.Note- each variable must be defined only once but it can be used multiple times with different assignment in your program.But there is one exception as well.when we study scope rules later you will understand that same variable name can be defined in different blocks of code.You will slowly understand what does it mean.For now it is enough to know that inside this main function you cannot define multiple variables with the same name.Then suppose we write,printf with %d and we print the value of the variable.I will explain you more about what this %d means.For now, I can only tell you that this will print the contents of whatever is there inside this variable var you have to put at the end return 0 Let me save this.And build and run the code.You can see the output here which is 4. Previously I had initialized the Value of 3, and then changed it to 4 and print it.And as expected,my output is equal to 4 without any error.
You can also assign variable to a variable instead of this constant value 3 or 4.int var1 is equal to 3. Suppose my new variable is var1,I declare another variable var2 and I initialized or you can say I assigned value to it with the value of var1.Here you can see that I am assigning the value of 3 actually because writing the name of the variable means that I am assigning its constant value and I'm assigning it to variable 2. Lets print it using printf.Lets debug As expected, the output turns out to be 3.You can also assign same values to different variables in a single line.As you can see I declared and defined variables in the same line using the same data type.All these variables are of integer type.Instead of defining and declaring in different lines it is better to write them down in a single line.Suppose I assign them the value equal to 4 all in the same line and then I print it.
Lets build and run.And as expected we get the value 4 4 4 because we had printed three times.There are three different variables var1 var2 var3. Because all of them has been assigned to the same value 4 That is why we are getting three values of 4 in the output.
Constant In C (part 2)
constants in c
Let us discuss now character constraints these are also two types single character and string string constant what is single character constants if i write like suppose single character is a so you will write like this in single quotation so this is what character constant constant so you can say character constant is what it is having a single character enclosed within single quote marks this is character constant this is also character constant and suppose i write this backslash this one zero this is also character constant these are backs backslash character constraints these are having different meanings there is list of backslash character constants right those are having different meanings fine and you can say like if you write this one comma this is also character constant right and if you write this at the rate this is also character constant so any single character which is enclosed within these single quotation mark within this you can also write down some characters also like a b c d capital a b c d or some numbers and some special characters also those are character constraints and these character constraints are within computer it these are being stored in the form of sky codes right like uh here this a means 97 capital a means what 65 like this small b means 98 and like this capital b means 66 and like this so on right and these are also having uh their different this this value this is also character constant if you write 1 and see 5 is not equal to this 5 this is character constant it is having some different value this is numeric constant this you need to take care right if you are writing anything between these single quotes the number then that is character constant that is not numeric constant this is not integer constant fine so sky value i am writing here you can see so these are sky values capital a to z 65 to 90 small a to z 97 to 122 zero to nine numbers are having a sky value 48 to 57 and some special character like this um coma or at the rate or some special characters are having values from 0 to 47 then 58 to 64 and 91 to 96 right you can also check out like which special character is having between these lie between these values and between these and between these you can google it out right but you have to take care of this thing and you can also perform some arithmetic operations on these character constants right suppose i am printing uh thissee if you are writing like this percentage printf percentage d this is for integer format specifier and a it is what single quote mark so this is what character constant so it will print what integer value of this a because i am writing here format specifier percentage d this is for integer this is to print integer value right here if you compiler will find it is percentage d then it will print what whatever is given here after this coma the first one the first one for that it will print the decimal value means that that integer value the integer value of a is 97 so it will print 97 and if you write percentage c it is what character constant it is used to print characters and if you write here 97 then it will print the equivalent value character value of this 97 fine and see every character is having integer value that is why i am saying that you can also perform arithmetic operations on character constants right next comes to string constant so string constants are you can say sequence of characters enclosed within double
characters and enclosed within double quote mark so this is string constant if you write abc this is what string constant and these characters may be letters number some special characters space everything if i write like uh here a b dollar this is also string constant but here c one thing if i write a in double quote this is not it is single character but enclosed in double quotation mark so it is not character single character constant it is a string constant and if i write a this is what single character constant but these are not equal this is different thing this is different thing this you need to take care this is string constant this is what character single character constant fine and if i write like 1 2 3 4 5 in double quote this is also string constant right but here this like 1 is not equal to this one because this is single character and it is equivalent to its sky value of 1 is 49 but string constant this is not equal to its sky value this is string constant right so you need to take care of this thing also and whenever this string constant is there in a program and when compiler read this string constant then what compiler will do compiler will store the address of the first character reads the address of the first character and it will append a null character constant it will append a null character constant at last why so just to mark this is end of the screw end of this string right so length of the string is what one two three four five six here if you find out the length of this string then it is not five it should be six because a compiler has added null character just to mark that this is end of this string fine so now let us discuss how to declare constants in your program we use what keyword const keyword to declare constant like this right one method is this one so if you write in a program suppose i am writing a function word main i am not writing a complete program you can include those header files and i am writing here const int a value is 10 in this program right means this value of a is constant throughout the program you cannot change this value if suppose you will print this value a then always the output would be 10 and suppose after that i am writing a is equal to 50. you are trying to change the value of a then it this line will give error that this value is you can say its read only value you cannot change this value because you have written conest keyword before this declaration before this initialization of this variable this is variable name that also will discuss what are variables in c this is data type but if you write like this into a is equal to 10 fine when you will print value of a 10 would be printed but after that anywhere in a program you can change this value if you write a is equal to 50 and then if you print value of a then the updated value would be printed 50 now you can change this value this will not give error so you have to declare constant using const keyword right another thing it that i have discussed in starting of this video you can use hash define macro definition symbolic constant so there you can write this would be above this main although you can use anywhere the hash define statement but generally we use where above this main function right so we write like what hash define suppose i am writing a 10 this is also fine right but generally here we write what capital uh letters only like if you're writing pi then pi also if you write max then max also like this right and why i am using these capital letters so that you can distinguish between the normal variables within the programs and the symbolic constraints that is why there are some rules when you use this hash define statement then there are some rules to write this the statements and what are those rules there should not be any space between hash and define there should also be a space between hash define this and then name of that constant and then value of that constant another thing you cannot use here equal to right this would be wrong fine you cannot use semicolon after a statement.
Constant in c (part 1)
constants in c.....
constants so that we use to define some fixed values like suppose um value of pi so you will write hash define pi is 3.14 this is what that definition section we have discussed when we were discussing structure of a c program so the value of pi is fixed 3.14 it is symbolic constant if you write hash define suppose max value is 50. so the value of that max is what is to be 50 throughout the program it is not going to be change you cannot change that value these are symbolic constants right so we are having basically two types of constants in c
1] numeric constants
2] character constants
or somewhere it is also written four types of
1] constant integer
2] floating point constant
3] character constant
4]string constant
let us discuss so these are four types of constant or you can say two types numeric and character constant is numeric is further divided into two types integer constant and real constant of floating constant here single character constant string constant so basically four types so let us discuss first one is integer constants these are having decimal values like if you write this uh 10 it is it is a constant five integer constant one integer constant integer constant right these are valid but if you write 0 5 this is not you can say decimal constant see in integer also we have 3 types decimal constant octal constant and hexadecimal constraint right decimal means we can use uh the the numbers from 0 to 9 base is 10 octal constant means from 0 to 7 base is 8 and hexadecimal means we can use from 0 to 15 and bases base of these constants are 16 so integer also having three categories so if you write 0 5 that comes under ah octal constant because the rule is what octal constants starts with the value 0 always right but decimal constant means yeah you can use 0 but if there are two digit in that constant so 0 can be at this side right side but 0 cannot be at this side left side if you write like this this comes under category octal constant right and constants are also called literals right so here also you can we can express an integer in three forms decimal octal and hexadecimal and by default if we say integer constant generally by default we represent that in decimal constant not octal not hexadecimal right difference i have told you what is octal now how you write hexadecimal constant c in hexadecimal we have sequence of digits preceded by either 0 x or you can say 0 small x
let us suppose i write ah 0 x this is what hexadecimal constant right and see in hexadecimal we use what from 0 to 9 numbers and a to f characters i have told i have written here 0 to 15 but here we use from 0 to9 numbers 10 numbers like right and after that 5 is what alphabets a to f right.
so here you can say a means 10 0 to 9 we use numbers 10 numbers then b like this we are having from 0 to 15 0 to 9 numbers and then 10 to 15 we represent like abcdef so if i write 0x that is also exactly decimal constant if i write like 0 x and 7 If this is also hexadecimal constant but if you write 0 x and suppose i am i am writing 7 g this is not hexadecimal constant because we cannot use g we can use only a to f right so you can say these integer constants are sequence of digits suppose i am writing here one two three four this is also what integer constant but rule or what you cannot write like this 56 comma 100 you cannot write any comma or special character between these constants so this is not valid this is invalid constant integer constant right or if and by default the sign is what plus you can also use sine plus or by default x plus if i write minus 1 to 3 this is also valid so you can write a sign either minus 1 plus if you write like this dollar one two three this is incorrect you cannot use any special character you can you you cannot use any comma you cannot use any spacel ike fifty seven space hundred this is also invalid you cannot use space uh between these sequence of digits this there should not be any space any commas any special character this is valid one two three four or like 56 or five six seven eight this is also valid right so now i hope you got integer constant let us discuss real constants so real constants are also known as floating point constants these are having fractional part like if you uh write 12.56 this is decimal part this is you can say you can say this is what the integer part this is decimal point and this is fractional part so having decimal point these are what real constants so if i write plus this that is also fine if i write minus 50 . 6.02 that is also fine sine can be plus or minus by default sign is plus right but if you write this is invalid there cannot be two decimal points right and you can also represent these uh decimal points or these floating point constant in uh exponential form having mantissa then e then exponent mantissa can be anything like having that decimal point and exponent is always constant right so these are some examples see which one is valid constant or numeric constant or not this one is valid 0x this is also valid This is not valid this one this is not valid because here we have space 0 1 2 this is valid 1 2 3 yes this is valid right and if suppose i write 0x af this is also valid and suppose if I write hash one two three this is invalid you cannot use any special character or known digit character right so these are numeric constant.
Introduction To C programming - 1
Introduction to c programming
The c character set
IDENTIFIERS AND KEYWORDS
linux
in today's.. I will give you guysa quick introduction to Linux andI'm gonna show you how to use somevery useful introductory Linuxcommands using a terminal windownow just to be clear this is a coursefor beginners who want to learn how touse command on a Linux terminal nowfor those of you guys who are notfamiliar with Linux at all let's giveyou a quick perspective Linux isnot Unix UNIX was created by a bunchof AT&T employees in 1969 Linux waswritten by a name AGGA by a guy namedLinus travolt who created the entirething by himself and released itaround 1991 now Linux is a powerfuloperating system but it is especiallydesigned for server systems and 90% ofthe world's fastest computers likesupercomputers run on some form ofLinux and this is because a rock-solidsystem okay so that was a quick historyon Linux that was just to give you aperspective now Linux and UNIX aredifferent just remember that now onemore thing before we dive in Linuxcomes in many different varietieswhich are called distros ordistributions in this tutorial wewill Use the popular Ubuntudistribution of Linux but there areothers out there as well such asFedora mint and Debian and more evenAndroid is a Linux distribution so thebasic commands we will rerun it we will be running and learning today can be generally used on almost all different Linux distributions alright so let me go ahead and launch Linux and I just wanna let you know I'm running Linux on my Windows so what you do is you install VirtualBox which is right here so let me launch that and inside a virtual box you can install any operating system possible so I have put Ubuntu Linux in side of VirtualBox on my Windows 7 machine ok so let me run this up and I just wanna let you know you can actually find a link in the description below which tells you how to install VirtualBox and Linux on your windows 7 . if you want to go ahead and do that but this is the Ubuntu Linux that is launching right now ok so here you're looking at bound to Linux and before we dive into the commands I'm going to show you something real quick what you're seeing here all these icons all this desktop all this nice graphical features this is called the GUI GUI this is called the graphical user interface now we're not worried about that today what we're worried about is the CLI which is called a command line interface so you have to launch a terminal to go into the command line interface and then once you are search for an app you can type in terminal which brings up the terminal right here and then you can actually click that and that is the terminal we will be working with all right so the first command we will be looking at today is the PWD command oops it's not typing okay p WD command PWD command stands for print working directory so when I press ENTER it actually tells me which directory I am currently located at so if I go to my own folder browser I am actually in home sake which is right here so I'm looking at all these guys on my command prompt. now the second command I want to show you guys is the LS command when you press LS it gives you a listing of everything which is in the current directory so the current directory is the sake directory which is my username and under home inside of home I've got all these guys so I've got the desktop downloads music public videos and if you come over here that's all the same stuff you're gonna see in a regular File Explorer so here's the desktop documents downloads music same stuff that you see here so that is the LS command it's it's it stands for list and when you list it lists whatever is inside of your current directory again PWD stands for print working directory so it tells you where you are currently located in now as you can see when you have a pretty graphical user interface you can see everything right in front of you but if you have a command line interface like this one a terminal you're not gonna be able to see anything so if I clear this that's all you see so you have no idea where you are okay so to see where you are PWD to see what you have at where you are you type in list now the next command I'm going to show you is called a CD command and CD command has a lot of variations CD is used for navigation so let's say I want to go to the Downloads folder. how do I go there I type in CD and I type in downloads the name of the folder and just remembereverything has to be exactly as it appears so the in in Linux everything is case-sensitive so this cannot be a small d it has to be capitalized just like it is here okay so if I type in CD downloads now I am in the downloads folder okay and how do I know I'm in downloads folder PWD it actually tells you right here so I'm in home slash sake / downloads okay and let's see what we have in downloads right now type in list and there's nothing in downloads so that's all launch this again go to downloads and as you can see download directory is actually empty okay so if it is empty you're not gonna see anything here now let's say I want to go back to my home directory my sake directory how do I go back so CD takes you into a folder and if you want to go out what you do is you type in CD space two dots and that takes you back to the previous directory that you were focused on now if you want to go to the root directory which is like in Windows it's like the C directory what you type is CD forward slash make sure you put the space okay so CD space forward slash press Enter and that's gonna take you to the root directory. let's type in LS and as you can see the root directory has much more than your user directory okay again but home and sake is inside of root root is at the top of everything so if you look around carefully you'll see the home directory sitting in the root directory and if you go in there CD home and you type in LS you will see your username okay and then CD sake then you type in LS and now you're back over here this and this match so remember this will take you to the root of your Linux operating system and inside of root you've got all kinds of fancy things that you don't want to worry about right now so let's do a quick recap let's go to the music folder CD music so I'm now in the music's folder or the directory I'm going to be using the the word folder and directory interchangeably interchangeably and they're gonna be mean B meaning the same exact thing okay so in here let's type in PWD so that means prank working directory and it tells you that you are in fact focused on the music folder again if you go over here here's the music folder if you go to home here's the music folder okay it's empty let's type in LS to see if it is really empty it is in fact empty so next I'm going to show you how to copy or move a file so let's go back CD space dot takes us back and do an LS and let's say I want to go into the Documents folder so I type in CD Documents and then type in LS and here what I have is I have a test file so this is one of the files what I want to do what I want to do is I want to copy this file and I'm gonna use the CP command for that that stands for a copy I'm gonna copy this test file and I'm going to paste it into the same folder with a different name so test copy and I'm going to press Enter okay just to give you make you understand exactly what happens so you use the copy command you pick the file that you're trying to copy and then you give it a brand new name to create the copy within the same folder okay so if I type in LS now you have the first file test and then you've got test copy now how do I remove this file you use the RM command okay so the RM command is usedto delete file in your current folder.so if you type in RM test copyand you type in LS as you can see testcopy is gone and we only have testleft over now what if I want to copytest file and I want to paste itinto the Downloads folder how do youdo that okay what you got to do is youhave type in CP and you take the testfile and then you have to tell thecomputer where do you want to put thecopy of the test file so remember ifyou go up here we're working underhome / sake okay so what you want todo is you want to do slash home slashsake slash downloads and you pressENTER and type in LS we still have thetest file right here nowlet's go back CD doc type in LSand let's navigate to the Downloadsfolder and if I type in LS here nowwe've got the file test sitting herewhich we copied over from theDocuments folder so let's go aheadand remove this file from theDownloads folder so our M is theremove command RM test and rememberbecause we are focused in two downloadswhen we do RM test its gonna dumpit's gonna delete the test file onlyfrom the Downloads folder becausethat is where we are focused on pressENTER type in list one more time LSand now there's nothing there leftso let's go back let's just type inPWD and we're back in a home sake okaynext the next style let's talk aboutmaking a new folder and deleting thenew folder so let me launch this righthere and I'm gonna minimize I'm gonnamake this a little thinner here okayso you can still see what's going onone second alright so that's betterso let's go to my arm My Documents overhere and let's go to CD documentsoops Dawkins okay so now we're in theDocuments folder and all we have inhere is the test file which you cansee right here let's make a newfolder so how you make a new folderyou use the command called MK dirpress ENTER and it's gonna say somekind of error because we were missingan operand okay so we were missing thenew directory we used the command whatwe did not specify the name of thedirectory so you type in MK dere dirand then you type in test folder I'mgonna use capital letters here okayand as you can see over here a testfolder was created instantly and Ican actually go into that test folderif I wanted to LS and there's nothingin there.so let's go back CD dot dotand let's delete the test folder sohow do you delete that what you do isyou using the commune's the commandrmdir so this one is make directorythis one is remove directory type intest folder and I'm not gonna pressENTER take a look over here and let'scome back here and press ENTER and thatdirectory disappears now if the directory had something inside it we cannot delete the directory that has stuff in it using our m dir okay so let's uh MK dir make another directory in the Documents folder and say test ok so it popped up right here and let's goinside here and let's just create a new document ok new doc now if I try to delete this using rmdir test folder let's go back here ok so now the test folder has a file in it it is the new doc okay if I try to delete this it's gonna say failed to remove test directory is not empty so how do you delete this you have to actually usetheRM command which is a removecommand for files but what you do isyou have to set a new option you haveto say - R and then you have to typein test ok so watch this there's stilla file in here but it's just gonnadisappear okay so everything in testhas been removed so this is how youdelete folders that have existing filesinside of them you use the RM commandyou put a space you put a minus R andthen you put a space and then you putthe name of the directory rightunderneath and right next to minus R okay so here it's got a really messy here so let's use the clear command to clear the screen real quick and I'm going to talk about a couple other commands and we're gonna end the tutorial here all right so the final command I want to go over is called a man command okay MA and now this stands for manualmanuals okay like like tutorials so whenyou don't know what you're doing and youwant to find out more about any command that you're using you can type in man space and let's just say the LS command which is the list command and you press ENTER it's gonna give you a whole lot of information regarding the LS command so you're gonna get the name of the commandwhich is LS it says list directory contents okay you get a quick setup synopsis you get a description of what the command exactly does and all that stuff and once you're done reading this whole thing you just type key Q to quit okay so let's do one more man and let's do the CP command which is the copy command press ENTER and it says here it copies files and directories okay and you have a description here and you can read through this whole thing and you can keep pressing enter to get more information so press ENTER to continue okay to go all the way but when you're done you can press Q and it just quits the manual so that's how you can get information on any command that you want in Linux alright and thanks for watching this video now there are going to be more Linux tutorials coming soon so go ahead and subscribe to my channel for more videos to come give me a thumbs up if you liked this video and you can also follow me on Facebook Google+ and Twitter okay so you have all these options all links to my social media websites and my actual website arefound in the description below alright thanks for watching again and I'll see you the next time
windows 10 part 2
windows 10
if you want to along the far left of the Start menu is where you’ll find File Explorer which is where you can access Files and folders on your computer Settings and below that is power where You can restart shutdown or put your Computer to sleep more on settings later Just like iOS and Android Microsoft has its own App Store for Windows you can find it in the list by Selecting a letter jump to M and finding Microsoft Store in the list if you plan To go here often I’d recommend pinning it to your taskbar Currently it’s in my taskbar just to the Right of file explorer so I’ll open it Up on their home page you’ll find Featured items along the top you can Select categories that include apps Games movies and TV and books if you Know what you’re looking for you can do A search I’ll do a search for Kody and There it is to install any app select Get to the far right if you select the Menu icon You have the options to view downloads And updates store settings your library Along with other account information now Let’s go take a look at the various Settings for Windows 10 if you’ve used Older versions of Windows you should be Familiar with the control panel which You can still access by typing control Panel into the search bar or you could Say hey Cortana control panel alright Which control panel do you want to open Control panel or settings control panel Alright starting control panel here you Can still access many of the settings For your computer since Microsoft is Slowly phasing out the control panel Will focus on the primary Settings app For Windows 10 you could ask Cortana to Open settings or you could just go to The Start menu and select the Settings Icon with settings open I’ll move quickly through each of these Categories highlighting options that Might be of interest to you we’ll go Through these in order starting with System displays where you can rearrange And change settings for your monitors You can change the order of your Displays by selecting the number and Dragging it to the left or to the right A cool feature introduced last year is Nightlight which can reduce the blue Light on your screens at night which Studies claim can make you sleep better In notifications and actions you can add Or remove quick actions which show up When you select notifications that I Showed you earlier if you scroll down This page you can turn on or off which Apps are allowed to send you Notifications power and sleep is where You can set your power settings for more Options select additional power settings And select a plan that works best for You here you can see your storage Storage sense is something that I leave On to automatically free up space tablet Mode is useful for those of you that Have a Microsoft Surface or similar Device that can be used as a tablet and In multitasking There is no need to turn any of these Off now for devices most of these are Self-explanatory bluetooth and other Devices you can see what’s connected to Your system or add devices printers and Scanners will show you what’s connected To your system here’s where you can Change your mouse settings in typing I Would suggest leaving these turned on Especially if you’re a horrible sspelle And in USB make sure this one is checked So you can get notified if there are and Issues connecting to USB devices if you Select phone you can link an Android or iPhone to be able to work continuously between your PC and phone with compatible apps for some of you this is a feature that might be useful in network and Internet you can see your network status set up Wi-Fi and other options for those of you that thought dial-up was dead it’s not there are still many areas in the United States and around the world that don’t have broadband service yet personalization is where you can make changes to the overall look of Windows 10 I’ll spend a little bit more time in this category you can set the background to be a slideshow just a single picture or a solid color you can browse your computer for other pictures that you would prefer to have as your background you can set how often the picture gets cchange anywhere from one minute to one day if you put a checkmark here you can automatically have the system pick an accent color based on your background currently the accent color on my system is blue but you can change it to any of the colors listed and if you scroll down this page in previous videos many have asked how I got this dark background for the settings menu when you first launch Windows 10 light is the default for me It’s a little too bright so I prefer the Dark when you’re on your lockscreen
windows 10 part 1
windows 10
Mac OS X ios
Android
Data Types in C (part 2)
Data Types in C....... Today, we will continue our discussion on integer data type. Our outline for today...
-
Ethical Hacking💻 वैसे जिस तेजी से सायबर क्राईमस आजकल बढते जा रहे है . हर बिझनेस ऑर...
