aaaa12345
Suggested Reading
How can I write a program to print hello on C without using () in the program?
One can use the -D option of most C compilers to replace a keyword with any character. So the following NoGroupingChars.c file will sufficewhen properly massaged.#include "stdio.h"int main LPAREN RPARENLBRACE printf LPAREN "hellon" RPAREN ;RBRACEand this is the masseur:cc -DLBRACE -DRBRACE -DLPAREN( -DRPAREN) -o NoGroupingChars NoGroupingChars.cHowever, in the spirit of not using the offending characters anywhere (presuming that they cannot be typed in at all), lets do it as follows:cc -DLBRACEprintf 173 -DRBRACEprintf 175 -DLPARENprintf 050 -DRPARENprintf 051 -o NoGroupingChars NoGroupingChars.cRunning ./NoGroupingChars then yields:hello(The other grouping characters mentioned in the questions are not required for this program but can be similarly treated when needed.)
------
What words can destroy a narcissist?The same words that hurt you or I or anyone . A narcissist hears all those hurtful words over and over all day all night the voice in their head never sleeps it's a continuous recording of a voice telling them they are no good , will never amount to anything, no one will love you over and over that coupled with a laundry list of other dysfunctions from their up bringing is what makes a narcissist a narcissist, so if you are asking because you think giving them a taste of their medicine will snap them in to shape that is not likely, if it were anyone else I'd say maybe but not a narcissist it will never work that because they are incapable of feeling what you feel so there is no lesson there
------
Why do bikers point to the ground?When riding with other motorcycles, riders will often point out any hazard in the roadway i.e. pothole, debris, sand, etc. to alert the following riders. If the hazard is on the left side, he will point with his left hand down towards the ground. If the danger is on his right side, he will stick out his right foot to alert those following. He uses his foot on the right side because using his hand would require removing it from the throttle, thus reducing the stability and control of the motorcycle. Another possibility is that when passing another rider in the opposite direction, we often wave as a gesture of comraderie. This sometimes takes the form of downward pointing left hand or fingers.
------
Which is simple python or Java?If you are begginer, then java is more preferable language but if you are good in c as object oriented language then you can go for python.Each language has its pros and cons. Python is more used in Machine learning and Artificial Intelligence. Java is also widely used in industry as back end development. So if you want to make career in artificial intelligence or machine learning then you must go with python or just want to learn any programming language then java will give you a better sattisfication than python ;).Both languages are good but firstly choose the one which will help you in you future career and make it more and more stronger. It will save your time and proceed to a bright future.
------
What is a good first program to write (besides "hello world")?Take a look at the problems on Kattis or maybe something like Project Euler. Note: A lot of Project Euler problems require deep knowledge of mathematics.I recommend trying some Kattis problems. You can start with the trivial ones that are akin to Hello World, in fact there is a problem that is Hello World. Then move on to the easy ones.
This will help you work with C# as well as get you thinking about solving different problems with code. And all of it is console based!I dont think I have made more than one non-console based program in my 5 years of learning CS so far. There is a lot you can do in the console.
------
Why does my loop run only once? C programming.Look closely at all your opening and closing curly braces. Pay no attention to how you have indented the code or braces. Just match them up, one at a time. When you do this, you will findThe last thing you are doing, at the bottom of the outermost for loop is executing a return statement. Because this is the main function, the return statement will cause your program to terminate.So, the body of your outermost for loop will execute only once, because you are leaving the main function via the return statement as the last thing you do inside that loop.Although brace placement and indentation policy is a matter or style and preference, consider trying Allman style, which can make it somewhat easier to see mismatched or unintended braces.
------
What does FTW mean to bikers?I have a hard time answering questions about bikes from people that dont get it. I know it comes off as rude, but if you dont get it, you dont. There is no explanation or words I or anyone else can put down that will make someone understand or get it.
However, if people that knew how to type questions on quora new now to do a simple google search they would have come up with this. SMH (oops, here comes another question)ftwOriginated as a biker term used in two contexts:1. Forever Two Wheels. A validation of biker culture, values, and of course, bikes.
2. Fuck The World. A rejection of non-biker/traditional values/laws of any kind
------
Why do Londoners never talk on The Tube (London Underground)?Its an unwritten rule that you dont talk too people on the Tube as it is a breech of etiquette!This rule is mostly observed in Peak Hour.Outside Peak Hour people may converse in quiet manner (as in a murmur) with family and friends and they cannot disturb anyone.Should one break these rules the sentence is normally dark looks with a possible tense and hostile atmosphere from the rest of the carriage. In extreme cases this may be supplemented with muttering.Young children and babies are NOT exempt from this rulehowever the parents or guardians may also share the punishment.That is why you dont talk on the tube.(It is quite noisy as well)
------
Do dolphin swim faster than killer whales?The answer is yes - and no. Dolphin do swim faster than Orca, however, their incredible fast speed is at a cost, and they get tired more quickly than an Orca. Consequently, the Orca, who take turns chasing dolphin, can out-last a school of dolphin and eventually one poor dolphin will tire and become a meal for the Orca.BTW, an Orca is actually a really big dolphin and not a whale. They are called "killer whales" because of their large size. Orca will go after larger whales such as grey whales with a small calf, and they have even been known to go after sharks, so they are the top predator in the oceans
------
Can hugging someone who is not your partner be considered cheating?In my opinion, no.But. Some people may think it is depending on their values, beliefs, religion etc.I think it is really important to discuss what cheating means to your partner. Some people would say calling a female friend any terms of endearment would be cheating, sending certain emoticons, participating in certain activities together and so on.
I think cheating can be different for different people and its hard to say if you and your partner come to the relationship knowing the exact things that would be considered cheating to one another. Its better to talk about it so you have defined boundaries and you dont cross them. Of course these boundaries should come from a healthy place not because of control or your partners own insecurities and jealousy.
------
I don't know anything about coding, but I want to learn SQL. How should I start? What are some suggestions?Coding isn't programming, it's translating an alwready written program (in English or some other language, or diagrams, or both) into a language a computer can use.Do you want to learn SQL, so you can code what others have developed? Or do you want to learn programming - figuring out a way for a computer to solve a problem - AND coding?And define "SQL". The basics -Select, Insert, Update and Delete - or involved programming done on large databases that are more C-like? You can learn the basics in a month. It takes years to get really good at actual programming.(But, as always, the legal advice you get on Quora is worth exactly what you paid for it, so check with an attorney.)
------
Why can't we use C to write AI programs?Like Python, C is also a programming language that enjoys a good reputation. However when it comes to AI C is less opted for, and Python takes the lead. Some of the reasons for this may be :-If you have a system which does not require much adjustments, but when it comes to ease of flexibility then Python is the most preferred language compared to C/C. With Python, making changes to the existing architecture is easy.Coding done with C is time consuming, whereas with Python the time required for coding is comparatively less.C/C can easily execute a source code, but the ways in which the arrays need to be filled cannot be easily determined with C/C.
Many machine learning libraries such as Tensorflow work well with Python than C/C
------
How do I write a simple C program for printing today's date?You can write the c program to print today's date by creating structure date. Then write the members(day, month, year) for structure date, which are int values. Then access the members of structure by using ".
" operator.
The program is as follows#include
year);tPrintf("n Today's date%d",d1.day,d1.month,d1.year);tgetch();
------
My ex sends me messages but ignores my messages. What does it mean?It means absolute crap. If she/he sends you messages reply her if you want or else block her and dump it down. In your question lies the answer and you are asking us. She/he is playing with your brain mahn as simple as that and you are getting caught in this snake and ladder she is playing. She/he is throwing a dice ud83cudfb2 that is a message and she is seeing if she can get a ladder or snake. If you think about her/him or reply her/him that means she got a ladder and if she/he gets ignored then it's a snake.Dont indulge in this crappy shit and Once you left something you should leave it completely.
ud83dude42."