Means it's a copypasta A list of other tone tags and their meanings can be found at this site Answer from Deleted User on reddit.com
Wikipedia
en.wikipedia.org › wiki › C.
C. - Wikipedia
August 17, 2024 - Abbreviation c. meaning "chapter" in legal citation
Merriam-Webster
merriam-webster.com › dictionary › c
C Definition & Meaning - Merriam-Webster
The meaning of C is the 3rd letter of the English alphabet. How to use c in a sentence. Words Starting With C
Videos
03:08
C | what is C meaning - YouTube
07:20
Assignment Operators Explained (=, +=, -=, *=, /=, %=) || Lesson ...
06:10
Operators In C Programming Language - YouTube
02:04
C augmented assignment operators 🧮 - YouTube
C Se 50 English Words Meaning | C se Word Meaning ...
05:18
C Se 50 English Words Meaning | C se Word Meaning | Spoken English ...
Reddit
reddit.com › r/outoftheloop › what’s the deal with /c on twitter?
r/OutOfTheLoop on Reddit: What’s the deal with /c on Twitter?
November 4, 2020 -
I know that /c and similar endings of posts tell you how a post should be read, and I know where the format comes from, but I don’t understand many of the abbreviated forms of this old style of conveying meaning. Bonus points if you have a breakdown of similar /letter type abbreviations. Thanks!
Like this
Top answer 1 of 3
1616
Answer: Means it's a copypasta A list of other tone tags and their meanings can be found at this site
2 of 3
97
Answer: Here's my rambling explanation: This syntax is taken from markup languages like HTML, where environments are often defined in this way. For example, consider these these HTML examples: word in italics word in italics word in bold word in bold Adopting this syntax, /X is used to signal that the previous block of text was part of some logical environment described by X. For example, "Cleveland is the best city in the world! /sarc" means the speaker said something sarcastic, and has now finished talking sarcastically. "Blah blah blah blah ... etc ... blah /rant" means that the speaker was ranting but has now finished. Some times people will include the "tag" at both ends like this: "Rant: blah blah blah /rant" Just as everything between and is bold, everything between "rant" and "/rant" is a rant. For convenience or dramatic effect the first tag is often not included. Sometimes people will say "end rant" instead of "/rant" In this sense I read "/c" as "end copy" or "end of the text that I copied" /ramble Edit to correct a typo and for formatting, and to add one more comment: I'm pretty sure that this is where it comes from, because it makes sense to me. I don't have any source but intuition and an understanding of HTML. A poster below remembers seeing blah syntax used years ago, which reinforces my feeling.
Cambridge Dictionary
dictionary.cambridge.org › us › dictionary › learner-english › c
C. | definition in the Cambridge Learner’s Dictionary
C. meaning: 1. written abbreviation for circa (= used before a number or date to show that it is not exact…. Learn more.
Dictionary.com
dictionary.com › browse › c
C Definition & Meaning | Dictionary.com
C definition: (with a year) about. See examples of c used in a sentence.
Reddit
reddit.com › r/learnpython › cannot figure out what the "c" stands for
r/learnpython on Reddit: Cannot figure out what the "c" stands for
September 20, 2024 -
str_var = "A string" count = 0 for c in str_var: count += 1 print(count)
can anyone explain what the "c" stands for in this? Does it stand for character? (Code came from a learning software I am using)
Top answer 1 of 5
84
Also want to point out that this could have been any variable name. There's nothing special about "c." You could have also written for letter in str_var You don't actually use that variable, though. To me, it's not great code because it's basically a throwaway variable that never appears in the rest of the code.
2 of 5
21
It's the variable containing each character in str_var while iterating over it. for c in str_var means for each character c in variable str_var do something. Instead of count += 1 you could do print(c) and it would print the current character.
Collins Dictionary
collinsdictionary.com › us › dictionary › english › c_1
C definition in American English | Collins English Dictionary
C is the third letter of the English alphabet.
YourDictionary
yourdictionary.com › home › dictionary meanings › c definition
C Definition & Meaning | YourDictionary
C definition: The third letter of the modern English alphabet.
Quora
quora.com › What-does-“c”-mean-in-English-slang-example-“wyd-c-”
What does “c” mean in English slang, example, “wyd c?”? - Quora
Answer (1 of 5): WYD is “what ya doin’?” (literally “what are you currently planning to do?” the c is going to either be a signature (i.e. Clare sent it) or short for cocker (one of a number of terms to refer to someone without their name cf love, darlin, hot stuff though it tends to be an older ...
Oxford Learner's Dictionaries
oxfordlearnersdictionaries.com › us › definition › english › c_1
c abbreviation - Definition, pictures, pronunciation and usage notes | Oxford Advanced Learner's Dictionary at OxfordLearnersDictionaries.com
Definition of c abbreviation in Oxford Advanced Learner's Dictionary. Meaning, pronunciation, picture, example sentences, grammar, usage notes, synonyms and more.
Cambridge Dictionary
dictionary.cambridge.org › dictionary › english › c-word
C-word | English meaning - Cambridge Dictionary
C-word definition: 1. a polite way of referring to the offensive word cunt: 2. a polite way of referring to the…. Learn more.
Top answer 1 of 12
56
In a declaration, it means it's a pointer to a pointer:
int **x; // declare x as a pointer to a pointer to an int
When using it, it deferences it twice:
int x = 1;
int *y = &x; // declare y as a pointer to x
int **z = &y; // declare z as a pointer to y
**z = 2; // sets the thing pointed to (the thing pointed to by z) to 2
// i.e., sets x to 2
2 of 12
36
It is pointer to pointer.
For more details you can check: Pointer to pointer
It can be good, for example, for dynamically allocating multidimensional arrays:
Like:
#include <stdlib.h>
int **array;
array = malloc(nrows * sizeof(int *));
if(array == NULL)
{
fprintf(stderr, "out of memory\n");
exit or return
}
for(i = 0; i < nrows; i++)
{
array[i] = malloc(ncolumns * sizeof(int));
if(array[i] == NULL)
{
fprintf(stderr, "out of memory\n");
exit or return
}
}