If someone ever ask you to define the word "beauty", send them this
+80 Readibility Points by default
#sarcasm
+80 Readibility Points by default
#sarcasm
👍3😱2
Output:
error: initializer - string for array of chars is too long
Explanation: The application of array in C++ is similar to that in C. The only exception is the way character arrays are initialized. When initializing character array in ANSI C, the compiler will allow the following declaration —
char array[3] = "abc" // allowed in ANSI C
This is because C assumes that the programmer intends to leave out the NULL (‘\0’) character in the definition. But in C++ the size should be 1 larger then the number of characters hence following statement is correct.
char array[4] = "abc" // O.K. for C++
error: initializer - string for array of chars is too long
Explanation: The application of array in C++ is similar to that in C. The only exception is the way character arrays are initialized. When initializing character array in ANSI C, the compiler will allow the following declaration —
char array[3] = "abc" // allowed in ANSI C
This is because C assumes that the programmer intends to leave out the NULL (‘\0’) character in the definition. But in C++ the size should be 1 larger then the number of characters hence following statement is correct.
char array[4] = "abc" // O.K. for C++
👍1
5 Killer Websites For Web Developers
https://instagram.openinapp.co/p-ccajul2doym
https://instagram.openinapp.co/p-ccajul2doym
This is a path for those of you who want to complete the Data Science undergraduate curriculum on your own time, for free, with courses from the best universities in the World.
In our curriculum, we give preference to MOOC (Massive Open Online Course) style courses because these courses were created with our style of learning in mind.
https://github.com/ossu/data-science
#codetilllogn #dsalgo1 #webdevknowledge
In our curriculum, we give preference to MOOC (Massive Open Online Course) style courses because these courses were created with our style of learning in mind.
https://github.com/ossu/data-science
#codetilllogn #dsalgo1 #webdevknowledge
GitHub
GitHub - ossu/data-science: 📊 Path to a free self-taught education in Data Science!
📊 Path to a free self-taught education in Data Science! - ossu/data-science
35 Best Free Code Editors In 2022 - Browser, Mac and Win Code Editors
https://toolbox.hashnode.com/35-best-free-code-editors
https://toolbox.hashnode.com/35-best-free-code-editors
Hashnode Toolbox
35 Best Free Code Editors In 2022 - Browser, Mac and Win Code Editors
Here’s our comprehensive list of the 35 best free code editors you can use in 2022.
Ans. (b)
Explanation: The inbuilt function index() returns the index of the element. T.index(5) = 4 and T[4] = 5. The other print statement has indexing of tuples, similar to that of Lists. T[6] = 7, T[6]-3 = 4, T[T[6]-3] = 5, T[T[6]-3]-6 = -1 and T[T[T[6]-3]-6], i.e. T[-1] = 8.
Explanation: The inbuilt function index() returns the index of the element. T.index(5) = 4 and T[4] = 5. The other print statement has indexing of tuples, similar to that of Lists. T[6] = 7, T[6]-3 = 4, T[T[6]-3] = 5, T[T[6]-3]-6 = -1 and T[T[T[6]-3]-6], i.e. T[-1] = 8.
👏1
Google Dorking commands to make your search easy.
https://the-dark-web.com/google-dorking-commands-101/
https://the-dark-web.com/google-dorking-commands-101/
People often ask me where to start their coding journey. I tell them that HTML is the most concrete starting point, because you can see the results of your code changes right on the webpage. And this week freeCodeCamp published a new HTML course that will introduce you to elements, semantic tags, tables, and more. (4 hour YouTube course): https://www.freecodecamp.org/news/learn-html-beginners-course/
freeCodeCamp.org
Learn HTML – Beginner's Course
HTML is the backbone of every website on the internet. If you want to get into web development, learning HTML is the place to start. We just published a beginner's HTML video course on the freeCodeCamp.org YouTube channel. (And we still offer our fre...