Re: Android Native - How To Request Notification Permissions Programming Mobile Development by Inamullah_1 Great tutorial—thanks for sharing! Just a few quick additions: Starting with Android 13 (API 33), apps must request permission for POST_NOTIFICATIONS at runtime, while older versions allow notifications by default. It’s best to check the Android version before requesting this permission to avoid unnecessary prompts. Also, remember to handle the … Re: How do I make my code jump back to a previous line? Programming by Dani Organizing code into functions is always important for readability and also to be able to reuse parts of your code as your app gets bigger. Thank you for posting your updated code to share with others :) Re: Error LNK1104 when debugging Programming Software Development by toneewa …; Clean Solution, and Rebuild. If you change the order of functions, and reuse old object files, you can run into this… Re: Need Coding Help With A Project Programming Software Development by Enzo_3 … average of numbers from a text file using higher-order functions like map() and reduce(). I was really stuck on how… Re: Need Coding Help With A Project Programming Software Development by Reverend Jim … directive >You should make use of two higher-order functions (i.e., map and reduce, or something else) to simplify… Re: Any jQuery 4 users? Programming Web Development by jkon … relatively easy since we often use our own extended jQuery functions, like our custom 'onClick' (which has a different implementation in… Re: What are the key components of an effective email marketing campaign? Digital Media Digital Marketing by Advertising13 … design is critical to ensure your email looks good and functions well on any screen size. Personalization: Use the recipient’s… Re: How do I make my code jump back to a previous line? Programming by trueriver updated my code... everything is fixed :) i made functions import time import sys #Global Variables firstTime = True loggedIn = False … Re: Question/Answering over SQL Data Using LangGraph Framework Programming Computer Science by Pelorus_1 Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever. Re: Need Coding Help With A Project Programming Software Development by Reverend Jim >Why put them down? Please explain to me how anything I said was a put down. If someone told me their methof of counting cows was "count the number of legs and divide by four", I would point out that it would be simpler just to count the number of cows. If I said "That's stupid, just count the cows", then that would be a … Re: Need Coding Help With A Project Programming Software Development by Dani First of all, let me be blunt. I believe that Enzo only resurrected a 12 year old thread with the intent of spamming. You and I know that because, as moderators, we see in his profile his spamming attempts and his infractions. However, no one else coming across this thread sees that or knows that, so the other 2000 people reading this thread may … Re: Android Native - How To Request Notification Permissions Programming Mobile Development by Erussuhsh Hi I'm new android app development can you teach me functions Programming Web Development by whiteyoh …being the index page, and one being the functions page. My problem is when i use a … sanity check. Do i have an error with my functions syntax? index.php [code] <?php echo …quot;myFunctions.php"; getConnection(); /getPea(); ?> [/code] functions.php [code] <?php // connect to the database function getConnection… Re: Functions Programming Software Development by codeorder … anybody know how to use these functions? I have heard that those are [B]vb6- Functions[/B] and you should try to… "basic?" to use .net, .net.Functions as .Substring and/or your own Functions, can do most of the content.extract… functions Programming Software Development by skorm909 ok so basically what im wanting to do is setup functions and call on them later... this is kind of what … etc i know how to do everything BUT do the functions as stated up ^^ and also make it so when you… Re: functions Programming Software Development by Schol-R-LEA …: I know that you were probably instructed to put the functions in the header file, but in fact you only want… *prototypes* declared there; you'll want to put the actual functions in a third file, which would then be linked into…. As for the reasons why you don't want the functions themselves in the header files, [this posting](http://forums.devshed… functions Programming Software Development by pooja.singh.3950 … solution of a c prog using functions ie to find lcm and gcd using functions in same program but to find lcm… Re: functions Programming Software Development by Gonbe … classic algorithms you generally come across when learning about recursive functions. Those functions use the algorithm of Euclides, you can read more… Re: Functions Programming Software Development by Saith … step debug this with your IDE. First comment out all functions so none are being called or compiled. Take the first… debug it until it works properly. Do so until all functions work properly. Debugging is half the fun of actual writing… Re: Functions Programming Software Development by plang007 … step debug this with your IDE. First comment out all functions so none are being called or compiled. Take the first… debug it until it works properly. Do so until all functions work properly. Debugging is half the fun of actual writing… Re: functions Programming Software Development by pooja.singh.3950 i want a simple code using simple c functions i'm just learning c so in simple code is it possible Re: functions Programming Software Development by Gonbe > i want a simple code using simple c functions i'm just learning c so in simple code is it possible The code I posted is almost identical to the one you posted yourself. That should be simple for you, unless you copy pasted the code in your starting post and didn't have a clue about it in the first place. Functions Programming Software Development by Mike23cool Can somebody please help me or tell me how to write functions in java. Functions Programming Software Development by naya22 Hi. Can anyone tell me some good websites that I can go to to find out more about functions in C++? Thanks Re: Functions Programming Software Development by naya22 I apologize. I was trying to find out what websites I can go to find out how to create user-defined functions, like void displayMessage() for example. Thanks for the sites, though Re: Functions Programming Software Development by mariocatch … on that basically means the function will be returning NOTHING. Functions that have a void return type, usually take in certain… Functions Programming Software Development by sfurlow2 … a problem we were assigned for homework. It deals with functions, and I'm not entirely sure how they work. The… functions Programming Software Development by sfurlow2 We're doing functions in our class, and we're supposed to write a … Functions Programming Software Development by Drake When using functions in C, i cannot seem to make my table of … Re: Functions Programming Software Development by Narue You never call the function, you just redeclare it. To call a function you use the name and replace parameters with actual values. For example, here's how you might call each of the functions: [code=cplusplus] func1(); func2 ( 1.0, 2.0 ); func3 ( V, R ); func4 ( I, R ); [/code]