Suggestions
Use up and down arrows to review and enter to select.Please wait while we process your payment
If you don't see it, please check your spam folder. Sometimes it can end up there.
If you don't see it, please check your spam folder. Sometimes it can end up there.
Please wait while we process your payment
By signing up you agree to our terms and privacy policy.
Don’t have an account? Subscribe now
Create Your Account
Sign up for your FREE 7-day trial
Already have an account? Log in
Your Email
Choose Your Plan
Individual
Group Discount
Save over 50% with a SparkNotes PLUS Annual Plan!
Purchasing SparkNotes PLUS for a group?
Get Annual Plans at a discount when you buy 2 or more!
Price
$24.99 $18.74 /subscription + tax
Subtotal $37.48 + tax
Save 25% on 2-49 accounts
Save 30% on 50-99 accounts
Want 100 or more? Contact us for a customized plan.
Your Plan
Payment Details
Payment Summary
SparkNotes Plus
You'll be billed after your free trial ends.
7-Day Free Trial
Not Applicable
Renews December 13, 2023 December 6, 2023
Discounts (applied to next billing)
DUE NOW
US $0.00
SNPLUSROCKS20 | 20% Discount
This is not a valid promo code.
Discount Code (one code per order)
SparkNotes PLUS Annual Plan - Group Discount
Qty: 00
SparkNotes Plus subscription is $4.99/month or $24.99/year as selected above. The free trial period is the first 7 days of your subscription. TO CANCEL YOUR SUBSCRIPTION AND AVOID BEING CHARGED, YOU MUST CANCEL BEFORE THE END OF THE FREE TRIAL PERIOD. You may cancel your subscription on your Subscription and Billing page or contact Customer Support at custserv@bn.com. Your subscription will continue automatically once the free trial period is over. Free trial is available to new customers only.
Choose Your Plan
For the next 7 days, you'll have access to awesome PLUS stuff like AP English test prep, No Fear Shakespeare translations and audio, a note-taking tool, personalized dashboard, & much more!
You’ve successfully purchased a group discount. Your group members can use the joining link below to redeem their group membership. You'll also receive an email with the link.
Members will be prompted to log in or create an account to redeem their group membership.
Thanks for creating a SparkNotes account! Continue to start your free trial.
Please wait while we process your payment
Your PLUS subscription has expired
Please wait while we process your payment
Please wait while we process your payment
Arguments are the data a function takes as input. For example, if I were to call a function steve(name, age) where name was declared as char *name and age were declared as int age, name and age would be the arguments to the function steve.
A basic sorting algorithm used to put data in order where the larger data elements bubble up to the top, giving the algorithm its name. For more information on sorting, please refer to the SparkNote on the subject.
A cast is a conversion from one data type to another. There are two types of casts: explicit and implicit. Explicit casts are ones done because the programmer has said to do so. For example, in the code
When an application needs more memory while it is running, it can ask the operating system for access to however much it requires. This process is known as dynamic memory allocation.
When an error occurs in a program, the program needs to be able to handle the situation and resolve the problem in a reasonable manner. In order for the program to know how to handle dangerous situations (such as when it asks the operating system for more memory and for some reason the operating system cannot comply), the programmer has to tell it how to detect these errors, a process known as error detection.
When data is passed into a function as arguments, the function actually receives a copy of the original data, not the original data itself. Thus, if the function makes any changes to the data passed into it, the original data remains unaffected. In order for a function to be able to modify the arguments passed to it, the data needs to be passed by reference, meaning that instead of passing in a copy of the data, a pointer to the data is passed. The function can then modify what the data at the addresses given to it, resulting in the original variables being modified.
Static memory is memory given to a program in order to house variables the program has declared.
Please wait while we process your payment