Anonymous
I bet you don't write something like this "are you did know how to"
detergentTikiya
Are you that lazy to write "Explain to me please?"
You do realize English may not be someone's first language
klimi
Roxi etc
klimi
I honestly know minimum people who has english as their first language
detergentTikiya
Eg me?
Just telling. People try to make sense as much as they can with whatever English they know.
Anonymous
You do realize English may not be someone's first language
Yes. Does it mean you shouldn't try making your writing more grammatical, especially when asking for help?
detergentTikiya
Yes. Does it mean you shouldn't try making your writing more grammatical, especially when asking for help?
Very well, yes. Grammar is the toughest thing when it comes to learn a language
Anonymous
Explain plz?
I cannot say there's something wrong with this message, but this guy didn't even bother to explain to us what EXACTLY he wants to know from others
detergentTikiya
Foreign language, I should say
klimi
#ot
Choú
Hi
Choú
Iam new here
klimi
Welcome
Anonymous
Yeah. He could have articulated his query well, I second
Sorry for offtopic. I didn't say people who don't know english are bastards. It's not true. But let's face it: it's quite hard (boring) to help people who cannot explain an issue and express it in a brief way, they usually don't want to understand issues, because it's hard for them, they would prefer a simpler way, which means requesting someone to write code for them/fix it
Anonymous
Can anyone help me with program
Anonymous
Actually the question is If a x amount is given then it we should display the amount as In term of no notes For eg : If given amount is 4563 Then it should display as No of 500rs,100rs,20rs, 10rs and 5rs notes it has
detergentTikiya
klimi
Any solution for this
Oh I'm sorry mate but this is not how it works
detergentTikiya
I am genuinely interested in your thought process
Anonymous
OK let's true this out with an effective solution
klimi
detergentTikiya
I can explain if you want in ot
No..I was referring to Mr coder
detergentTikiya
On his thought process about the problem
Anonymous
Artöm
Anonymous
Bcoz as described It should display no of notes it has as 500,200,100,50,20,10,5
Anonymous
Anyone can help me I need c program to count number of character in sentence in a sentence excluding space and using while loop
detergentTikiya
Bcoz as described It should display no of notes it has as 500,200,100,50,20,10,5
Can you just tell how will you solve this (in plain English)?
detergentTikiya
Once you are able to do this, the programming is just the next step
klimi
Sometimes... If I have spare time
detergentTikiya
Sometimes... If I have spare time
Why? I don't help people who can't help themselves at all
Anonymous
yes. you need to have an algorithm to implement. you will have issues trying to implement a non-existent algorithm. a programming language just happens to be your hammer @mrpunk007
klimi
Eg for this it would could 4 constants or so
Anonymous
/ / hey guys am new here
Dima
Welcome!
Anonymous
Okay thanks guys ,but what is this group all about
Anonymous
Alright
Anonymous
Am I allowed to ask questions here ,am a c++ begginer
Anonymous
write a program in wch you wll declare 2 arrays, 1 which will take 8 numbers from input and the other will store the square of those numbers... e.g. if the 1st array contains the numbers 2, 5, 4, 9 etc....the nxt array shld contain 4, 25, 16, 81 etc and be able to output to screen....[25] extra credit wll be given if you use a function to find the square of the numbers.
Elnee
write a program in wch you wll declare 2 arrays, 1 which will take 8 numbers from input and the other will store the square of those numbers... e.g. if the 1st array contains the numbers 2, 5, 4, 9 etc....the nxt array shld contain 4, 25, 16, 81 etc and be able to output to screen....[25] extra credit wll be given if you use a function to find the square of the numbers.
So, go ahead with it too. It's pretty simple program. And what you are doing now is not asking questions. You just want someone to solve your problem. It's not a right approach. You have to at least start solving it and asking some certain questions about what exactly you can't do and what exactly you want to know. And before asking just use Google. If you doesn't follow what I said you will possibly never become a programmer.
Anonymous
Thanks
Elnee
Thanks
You are welcome :) Just break every task on parts. So, you need: 1. Declare 2 arrays (learn what is arrays in C++ and how to work with them) 2. Get from user 8 numbers into first array (learn loops, user input, <iostream> header) 3. Use function pow() from <cmath> header and raise your numbers to a power. Store result in the second array. 4. Output second array to screen. (learn about std::cout, std::cin and basic I/O handling in C++) Good luck to you.
Elnee
By the way someone tried to PM me. Just don't. Never. I'll block immediately.
Elnee
Thanks a lot friend
You are welcome 😉
Abdul
Hi friends
Abdul
Anyone who knows c programming to help me for growup skills
Artöm
Anyone who knows c programming to help me for growup skills
We do. We'll help if you have questions, but no one will write a whole program for you
Srv
Ming
Whenever I open this group, all the mods and admin are like " dO iT oN yOuR oWn, bLa bLa shIFty FuCk bLa bLa"
Anonymous
/saved
Anonymous
/learn
Mihail
Whenever I open this group, all the mods and admin are like " dO iT oN yOuR oWn, bLa bLa shIFty FuCk bLa bLa"
well if you had actually read the rules you'd know that we aren't here to write your programs and no bitching about it won't change anything. also insults like that aren't welcome here and i'm not sure if anyone except you has used them
Mihail
yet you quoted it as supposedly the "mods and admins" said it
klimi
giving people fish or teaching them how to fish?
Anonymous
There's no any single chat on the internet where people would write code for you, and I doubt you'd be accepted anywhere judging by the way you're acting yourself, thus your request about "write code for me please" would never be accepted
lock
Hi, I have a question, i'm creating a simple program that checks for a password to pratise some C programming, but I get a Segmentation Fault in the fgets function but don't know why. The C code is this one: #include <openssl/md5.h> #include <stdio.h> #include "md5.h" #include "hex.h" int main() { char pass[30]; char *out; char *out2; printf("[=] Password: "); fgets(pass, sizeof(pass), stdin); // HERE IS THE ERROR out = md5crypt(pass); out2 = hexencode(out); if(strcmp(out2, "E492931E5DAA29C4B1FE5B4A924567DB") == 0) { printf("[+] Access granted, use the password as flag!\n"); exit(1); } else { printf("[-] Try again!\n"); } return 0; }
Anonymous
because you have a buffer overflow in your program. you don't get segmentation fault if you input "abcdef"