Learnprogramo Logo

Problem Solving Through Programming in C

In this lesson, we are going to learn Problem Solving Through Programming in C. This is the first lesson while we start learning the C language.

So let’s start learning the C language.

Table of Contents

Introduction to Problem Solving Through Programming in C

Regardless of the area of the study, computer science is all about solving problems with computers. The problem that we want to solve can come from any real-world problem or perhaps even from the abstract world. We need to have a standard systematic approach to problem solving through programming in c.

computer programmers are problem solvers. In order to solve a problem on a computer, we must know how to represent the information describing the problem and determine the steps to transform the information from one representation into another.

In this chapter, we will learn problem-solving and steps in problem-solving, basic tools for designing solution as an algorithm, flowchart , pseudo code etc.

A computer is a very powerful and versatile machine capable of performing a multitude of different tasks, yet it has no intelligence or thinking power.

The Computer performs many tasks exactly in the same manner as it is told to do. This places responsibility on the user to instruct the computer in a correct and precise manner so that the machine is able to perform the required job in a proper way. A wrong or ambiguous instruction may sometimes prove dangerous.

The computer cannot solve the problem on its own, one has to provide step by step solutions of the problem to the computer. In fact, the task of problem-solving is not that of the computer.

It is the programmer who has to write down the solution to the problem in terms of simple operations which the computer can understand and execute.

Problem-solving is a sequential process of analyzing information related to a given situation and generating appropriate response options.

In order to solve a problem with the computer, one has to pass through certain stages or steps. They are as follows:

Steps to Solve a Problem With the Computer

problem solving through programming in c

Step 1: Understanding the Problem:

Here we try to understand the problem to be solved in totally. Before with the next stage or step, we should be absolutely sure about the objectives of the given problem.

Step 2: Analyzing the Problem:

After understanding thoroughly the problem to be solved, we look at different ways of solving the problem and evaluate each of these methods.

The idea here is to search for an appropriate solution to the problem under consideration. The end result of this stage is a broad overview of the sequence of operations that are to be carried out to solve the given problem.

Step 3: Developing the solution:

Here, the overview of the sequence of operations that was the result of the analysis stage is expanded to form a detailed step by step solution to the problem under consideration.

Step 4: Coding and Implementation:

The last stage of problem-solving is the conversion of the detailed sequence of operations into a language that the computer can understand. Here, each step is converted to its equivalent instruction or instructions in the computer language that has been chosen for the implantation.

The vehicle for the computer solution to a problem is a set of explicit and unambiguous instructions expressed in a programming language. This set of instruction is called a program with problem solving through programming in C .

A program may also be thought of as an algorithm expressed in a programming language. an algorithm, therefore, corresponds to a solution to a problem that is independent of any programming language .

To obtain the computer solution to a problem once we have the program we usually have to supply the program with input or data. The program then takes this input and manipulates it according to its instructions. Eventually produces an output which represents the computer solution to the problem.

The problem solving is a skill and there are no universal approaches one can take to solving problems. Basically one must explore possible avenues to a solution one by one until she/he comes across the right path to a solution.

In general, as one gains experience in solving problems, one develops one’s own techniques and strategies, though they are often intangible. Problem-solving skills are recognized as an integral component of computer programming.

Note: Practice C Programs for problem solving through programming in C.

Problem Solving Steps

Problem-solving is a creative process which defines systematization and mechanization. There are a number of steps that can be taken to raise the level of one’s performance in problem-solving.

A problem-solving technique follows certain steps in finding the solution to a problem. Let us look into the steps one by one:

1. Problem Definition Phase:

The success in solving any problem is possible only after the problem has been fully understood. That is, we cannot hope to solve a problem, which we do not understand. So, the problem understanding is the first step towards the solution of the problem.

In the problem definition phase, we must emphasize what must be done rather than how is it to be done. That is, we try to extract the precisely defined set of tasks from the problem statement.

Inexperienced problem solvers too often gallop ahead with the task of the problem – solving only to find that they are either solving the wrong problem or solving the wrong problem or solving just one particular problem.

2. Getting Started on a Problem:

There are many ways of solving a problem and there may be several solutions. So, it is difficult to recognize immediately which path could be more productive. Problem solving through programming in C.

Sometimes you do not have any idea where to begin solving a problem, even if the problem has been defined. Such block sometimes occurs because you are overly concerned with the details of the implementation even before you have completely understood or worked out a solution.

The best advice is not to get concerned with the details. Those can come later when the intricacies of the problem have been understood.

3. Use of Specific Examples:

To get started on a problem, we can make use of heuristics i.e the rule of thumb. This approach will allow us to start on the problem by picking a specific problem we wish to solve and try to work out the mechanism that will allow solving this particular problem.

It is usually much easier to work out the details of a solution to a specific problem because the relationship between the mechanism and the problem is more clearly defined.

This approach of focusing on a particular problem can give us the foothold we need for making a start on the solution to the general problem.

4. Similarities Among Problems:

One way to make a start is by considering a specific example. Another approach is to bring the experience to bear on the current problems. So, it is important to see if there are any similarities between the current problem and the past problems which we have solved.

The more experience one has the more tools and techniques one can bring to bear in tackling the given problem. But sometimes, it blocks us from discovering a desirable or better solution to the problem.

A skill that is important to try to develop in problem-solving is the ability to view a problem from a variety of angles.

One must be able to metaphorically turn a problem upside down, inside out, sideways, backwards, forwards and so on. Once one has developed this skill it should be possible to get started on any problem.

5. Working Backwards from the Solution:

In some cases, we can assume that we already have the solution to the problem and then try to work backwards to the starting point. Even a guess at the solution to the problem may be enough to give us a foothold to start on the problem.

We can systematize the investigations and avoid duplicate efforts by writing down the various steps taken and explorations made.

Another practice that helps to develop the problem-solving skills, once we have solved a problem, to consciously reflect back on the way we went about discovering the solution.

General Problem Solving Strategies:

problem solving through programming in c

There are a number of general and powerful computational strategies that are repeatedly used in various guises in computer science.

Often it is possible to phrase a problem in terms of one of these strategies and achieve considerable gains in computational efficiency.

1. Divide and Conquer:

The most widely known and used strategy, where the basic idea is to break down the original problem into two or more sub-problems, which is presumably easier or more efficient to solve.

The Splitting can be carried on further so that eventually we have many sub-problems, so small that further splitting is no necessary to solve them. We shall see many examples of this strategy and discuss the gain in efficiency due to its application.

2. Binary Doubling:

This is the reverse of the divide and conquers strategy i.e build-up the solution for a larger problem from solutions and smaller sub-problems.

3. Dynamic Programming:

Another general strategy for problem-solving which is useful when we can build-up the solution as a sequence of the intermediate steps. Problem Solving through programming in C.

The travelling salesman problem falls into this category. The idea here is that a good or optimal solution to a problem can be built-up from good or optimal solutions of the sub-problems.

4. General Search, Back Tracking and Branch-and-Bound:

All of these are variants of the basic dynamic programming strategy but are equally important.

Share This Story, Choose Your Platform!

Related posts.

What is Preprocessor in C

What is Preprocessor in C

What is File Handling in C

What is File Handling in C

Structures and Unions in C

Structures and Unions in C

  • C Data Types
  • C Operators
  • C Input and Output
  • C Control Flow
  • C Functions
  • C Preprocessors
  • C File Handling
  • C Cheatsheet
  • C Interview Questions
  • getch() function in C with Examples
  • C Program to Print Armstrong Numbers Between 1 to 1000
  • rand() in C
  • Else without IF and L-Value Required Error in C
  • C program to check if a given string is Keyword or not
  • Reverse String in C
  • Discrete Fourier Transform and its Inverse using C
  • time.h header file in C with Examples
  • C Exercises - Practice Questions with Solutions for C Programming
  • How to use gotoxy() in codeblocks?
  • Program For Newton’s Forward Interpolation
  • How to avoid Structure Padding in C?
  • C Program to Reverse a String Using Recursion
  • C Program To Remove Duplicates From Sorted Array
  • C Program to Find Determinant of a Matrix
  • Concatenating Two Strings in C
  • C Program to Convert Decimal to Octal
  • Convert Binary to Decimal in C
  • C Program to Add N Distances Given in inch-feet System using Structures

C Programs : Practicing and solving problems is the best way to learn anything. Here, we have provided 100+ C programming examples in different categories like basic C Programs, Fibonacci series in C, String, Array, Base Conversion, Pattern Printing, Pointers, etc. These C programs are the most asked interview questions from basic to advanced level.

C Programs

C Program Topics :

  • Basic C Programs
  • Control Flow Programs
  • Pattern Printing Programs
  • Functions Programs
  • Arrays Programs
  • Strings Programs
  • Conversions Programs
  • Pointers Programs
  • Structures and Unions Programs
  • File I/O Programs
  • Date and Time Programs
  • More C Programs

   

C Program – Basic
  • C Hello World Program
  • C Program to Print Your Own Name  
  • C Program to Print an Integer Entered By the User
  • C Program to Add Two Numbers
  • C Program to Check Whether a Number is Prime or Not
  • C Program to Multiply two Floating-Point Numbers  
  • C Program to Print the ASCII Value of a Character
  • C Program to Swap Two Numbers
  • C Program to Calculate Fahrenheit to Celsius
  • C Program to Find the Size of int, float, double, and char
  • C Program to Add Two Complex Numbers  
  • C Program to Print Prime Numbers From 1 to N  
  • C Program to Find Simple Interest
  • C Program to Find Compound Interest
  • C Program for Area And Perimeter Of Rectangle  
C Program – Control Flow
  • C Program to Check Whether a Number is Positive, Negative, or Zero
  • C Program to Check Whether Number is Even or Odd
  • C Program to Check Whether a Character is Vowel or Consonant  
  • C Program to Find Largest Number Among Three Numbers
  • C Program to Calculate Sum of Natural Numbers  
  • C Program to Print Alphabets From A to Z Using Loop
  • C Program to Check Leap Year
  • C Program to Find Factorial of a Number
  • C Program to Make a Simple Calculator 
  • C Program to Generate Multiplication Table  
  • C Program to Print Fibonacci Series
  • C Program to Find LCM of Two Numbers
  • C Program to Check Armstrong Number
  • C Program to Display Armstrong Numbers Between 1 to 1000  
  • C Program to Display Armstrong Number Between Two Intervals  
  • C Program to Reverse a Number
  • C Program to Check Whether a Number is a Palindrome or Not  
  • C Program to Display Prime Numbers Between Intervals
  • C Program to Check whether the input number is a Neon Number
  • C Program to Find All Factors of a Natural Number
  • C program to  Sum of Fibonacci Numbers at Even Indexes up to N Terms  
C Program – Pattern Printing
  • C Program to Print Simple Pyramid Pattern 
  • C Program to Print Given Triangle  
  • C Program to Print 180 0 Rotation of Simple Pyramid
  • C Program to Print Inverted Pyramid  
  • C Program to Print Number Pattern
  • C Program to Print Character Pattern  
  • C Program to Print Continuous Character Pattern
  • C Program to Print Hollow Star Pyramid
  • C Program to Print Inverted Hollow Star pyramid  
  • C Program to Print Hollow Star Pyramid in a Diamond Shape
  • C Program to Print Full Diamond Shape Pyramid
  • C Program to Print Pascal’s Pattern Triangle Pyramid  
  • C Program to Print Floyd’s Pattern Triangle Pyramid  
  • C Program to Print Reverse Floyd pattern Triangle Pyramid  
C Program – Functions
  • C Program to Check Prime Number By Creating a Function  
  • C Program to Display Prime Numbers Between Two Intervals Using Functions  
  • C Program to Find All Roots of a Quadratic Equation
  • C Program to Check Whether a Number can be Express as Sum of Two Prime Numbers
  • C Program to Find the Sum of Natural Numbers using Recursion  
  • C Program to Calculate the Factorial of a Number Using Recursion 
  • C Program to Find G.C.D Using Recursion
  • C Program to Reverse a Stack using Recursion
  • C Program to Calculate Power Using Recursion
C Program – Arrays
  • C Program to Print a 2D Array
  • C Program to Find the Largest Element in an Array
  • C Program to Find the Maximum and Minimum in an Array
  • C Program to Search an Element in an Array (Binary search)
  • C Program to Calculate the Average of All the Elements Present in an Array  
  • C Program to Sort an Array using Bubble Sort
  • C Program to Sort an Array using Merge Sort
  • C Program to Sort an Array Using Selection Sort 
  • C Program to Sort an Array Using Insertion Sort
  • C Program to Sort the Elements of an Array in Descending Order
  • C Program to Sort the Elements of an Array in Ascending Order 
  • C Program to Remove Duplicate Elements From a Sorted Array
  • C Program to Merge Two Arrays  
  • C Program to Remove All Occurrences of an Element in an Array  
  • C Program to Find Common Array Elements   
  • C Program to Copy All the Elements of One Array to Another Array
  • C Program For Array Rotation 
  • C Program to Sort the 2D Array Across Rows
  • C Program to Check Whether Two Matrices Are Equal or Not  
  • C Program to Find the Transpose
  • C Program to Find the Determinant of a Matrix
  • C Program to Find the Normal and Trace  
  • C Program to Add Two Matrices
  • C Program to Multiply Two Matrices
  • C Program to Print Boundary Elements of a Matrix  
  • C Program to Rotate Matrix Elements  
  • C Program to Compute the Sum of Diagonals of a Matrix  
  • C Program to Interchange Elements of First and Last in a Matrix Across Rows  
  • C Program to Interchange Elements of First and Last in a Matrix Across Columns  
C Program – Strings
  • C Program to Add or Concatenate Two Strings
  • C Program to Add 2 Binary Strings
  • C Program to Get a Non-Repeating Character From the Given String
  • C Program to check if the string is palindrome or not
  • C Program to Reverse an Array or String
  • C program to Reverse a String Using Recursion
  • C Program to Find the Length of a String
  • C Program to Sort a String
  • C Program to Check For Pangram String
  • C Program to Print the First Letter of Each Word  
  • C Program to Determine the Unicode Code Point at a Given Index  
  • C Program to Remove Leading Zeros  
  • C Program to Compare Two Strings
  • C Program to Compare Two Strings Lexicographically  
  • C Program to Insert a String into Another String
  • C Program to Split a String into a Number of Sub-Strings  
C Program – Conversions
  • C Program For Boolean to String Conversion  
  • C Program For Float to String Conversion
  • C Program For Double to String Conversion  
  • C Program For String to Long Conversion
  • C Program For Long to String Conversion
  • C Program For Int to Char Conversion  
  • C Program For Char to Int Conversion  
  • C Program For Octal to Decimal Conversion  
  • C Program For Decimal to Octal Conversion
  • C Program For Hexadecimal to Decimal Conversion  
  • C Program For Decimal to Hexadecimal Conversion  
  • C Program For Decimal to Binary Conversion 
  • C Program For Binary to Decimal Conversion
C Program – Pointers
  • How to Return a Pointer from a Function in C
  • How to Declare a Two-Dimensional Array of Pointers in C?
  • C Program to Find the Largest Element in an Array using Pointers
  • C Program to Sort an Array using Pointers
  • C Program to Sort a 2D Array of Strings
  • C Program to Check if a String is a Palindrome using Pointers
  • C Program to Create a Copy of a Singly Linked List using Recursion
C Program – Structures and Unions
  • C Program to Store Information of Students Using Structure
  • C Program to Store Student Records as Structures and Sort them by Name
  • C Program to Add Two Complex Numbers by Passing Structure to a Function
  • C Program to Store Student Records as Structures and Sort them by Age or ID
  • Read/Write Structure to a File in C 
  • Flexible Array Members in a Structure in C
C Program – File IO
  • C Program to Create a Temporary File
  • C Program to Read/Write Structure to a File
  • C Program to Rename a file
  • C Program to Make a File Read-Only
  • C program to Compare Two Files and Report Mismatches
  • C Program to Copy One File into Another File  
  • C Program to Print all the Patterns that Match Given Pattern From a File
  • C Program to Append the Content of One Text File to Another
  • C Program to Read Content From One File and Write it Into Another File
  • C Program to Read and Print all Files From a Zip File  
C Program – Date and Time
  • C Program to Format time in AM-PM format 
  • C program to Print Digital Clock with the Current Time
  • C Program to Display Dates of Calendar Year in Different Formats
  • C Program to Display Current Date and Time
  • C Program to Maximize Time by Replacing ‘_’ in a Given 24-Hour Format Time
  • C Program to Convert the Local Time to GMT
  • C Program to Convert Hours into Minutes and Seconds
C Program – More C Programs
  • C Program to Show Runtime exceptions  
  • C Program to Show Types of errors  
  • C Program to Show Unreachable Code Error  
  • C Program to Find Quotient and Remainder 
  • C Program to Find the Initials of a Name 
  • C Program to Draw a Circle in Graphics
  • Printing Source Code of a C Program Itself

FAQs on C Program

Q1: what is c programming.

C is a structured, high-level, and general-purpose programming language, developed in the early 1970s by Dennis Ritchie at Bell Labs. C language is considered as the mother language of all modern programming languages, widely used for developing system software, embedded software, and application software.

Q2: How do I write a “Hello, World!” program in C?

To write a “Hello, World!” program in C, you can use the following code: #include <stdio.h> int main() {   printf(“Hello, World!\n”);   return 0; } This code uses the printf function to display the “Hello, World!” message on the screen.

Q3: Why should you learn C Programming?

There are many reasons why you should learn C programming: Versatility Efficiency Portability Widely used Foundation for other languages Employment opportunities and more.

Please Login to comment...

  • How to Delete Whatsapp Business Account?
  • Discord vs Zoom: Select The Efficienct One for Virtual Meetings?
  • Otter AI vs Dragon Speech Recognition: Which is the best AI Transcription Tool?
  • Google Messages To Let You Send Multiple Photos
  • 30 OOPs Interview Questions and Answers (2024)

Improve your Coding Skills with Practice

 alt=

What kind of Experience do you want to share?

"Hello World!" in C Easy C (Basic) Max Score: 5 Success Rate: 85.65%

Playing with characters easy c (basic) max score: 5 success rate: 84.18%, sum and difference of two numbers easy c (basic) max score: 5 success rate: 94.56%, functions in c easy c (basic) max score: 10 success rate: 95.94%, pointers in c easy c (basic) max score: 10 success rate: 96.54%, conditional statements in c easy c (basic) max score: 10 success rate: 96.94%, for loop in c easy c (basic) max score: 10 success rate: 93.63%, sum of digits of a five digit number easy c (basic) max score: 15 success rate: 98.66%, bitwise operators easy c (basic) max score: 15 success rate: 94.84%, printing pattern using loops medium c (basic) max score: 30 success rate: 95.89%.

NPTEL

  • Announcements
  • Explore Courses

Problem solving through Programming In C

  • BE/BTech  in all disciplines
  • BCA/MCA/M. Sc
  • All IT Industries

65741 students have enrolled already!!

problem solving through c

Problem Solving with Computer

By Bipin Tiwari

Problem Solving is a scientific technique to discover and implement the answer to a problem. The computer is the symbol manipulating device that follows the set of commands known as program.

Program is the set of instructions which is run by the computer to perform specific task. The task of developing program is called programming.

Problem Solving Technique:

Sometimes it is not sufficient just to cope with problems. We have to solve that problems. Most people are involving to solve the problem. These problem are occur while performing small task or making small decision. So, Here are the some basic steps to solve the problems

Step 1: Identify and Define Problem

Explain you problem clearly as possible as you can.

Step 2: Generate Possible Solutions

  • List out all the solution that you find. Don’t focus on the quality of the solution
  • Generate the maximum number of solution as you can without considering the quality of the solution

Step 3: Evaluate Alternatives

After generating the maximum solution, Remove the undesired solutions.

Step 4: Decide a Solution

After filtering all the solution, you have the best solution only. Then choose on of the best solution and make a decision to make it as a perfect solution.

Step 5: Implement a Solution:

After getting the best solution, Implement that solution to solve a problem.

Step 6: Evaluate the result

After implementing a best solution, Evaluate how much you solution solve the problem. If your solution will not solve the problem then you can again start with Step 2 .

Algorithm is the set of rules that define how particular problem can be solved in finite number of steps. Any good algorithm must have following characteristics

  • Input: Specify and require input
  • Output:  Solution of any problem
  • Definite:  Solution must be clearly defined
  • Finite: Steps must be finite
  • Correct:  Correct output must be generated

Advantages of Algorithms:

  • It is the way to sole a problem step-wise so it is easy to understand.
  • It uses definite procedure.
  • It is not dependent with any programming language.
  • Each step has it own meaning so it is easy to debug

Disadvantage of Algorithms:

  • It is time consuming
  • Difficult to show branching and looping statement
  • Large problems are difficult to implement

The solution of any problem in picture form is called flowchart. It is the one of the most important technique to depict an algorithm.

Advantage of Flowchart:

  • Easier to understand
  • Helps to understand logic of problem
  • Easy to draw flowchart in any software like MS-Word
  • Complex problem can be represent using less symbols
  • It is the way to documenting any problem
  • Helps in debugging process

Disadvantage of Flowchart:

  • For any change, Flowchart have to redrawn
  • Showing many looping and branching become complex
  • Modification of flowchart is time consuming

Symbol Used in Flowchart:

Example: Algorithm and Flowchart to check odd or even

Coding, Compiling and Execution

Question's answer.

Share this link via

Or copy link

Copyright 2022 | HAMROCSIT.COM | All Right Reserved

problem solving through c

  • Science & Math
  • Mathematics

Amazon prime logo

Enjoy fast, free delivery, exclusive deals, and award-winning movies & TV shows with Prime Try Prime and start saving today with fast, free delivery

Amazon Prime includes:

Fast, FREE Delivery is available to Prime members. To join, select "Try Amazon Prime and start saving today with Fast, FREE Delivery" below the Add to Cart button.

  • Cardmembers earn 5% Back at Amazon.com with a Prime Credit Card.
  • Unlimited Free Two-Day Delivery
  • Streaming of thousands of movies and TV shows with limited ads on Prime Video.
  • A Kindle book to borrow for free each month - with no due dates
  • Listen to over 2 million songs and hundreds of playlists
  • Unlimited photo storage with anywhere access

Important:  Your credit card will NOT be charged when you start your free trial or if you cancel during the trial period. If you're happy with Amazon Prime, do nothing. At the end of the free trial, your membership will automatically upgrade to a monthly membership.

Buy new: $59.61 $59.61 FREE delivery: Friday, April 5 Ships from: Amazon.com Sold by: Amazon.com

Return this item for free.

Free returns are available for the shipping address you chose. You can return the item for any reason in new and unused condition: no shipping charges

  • Go to your orders and start the return
  • Select the return method

Buy used: $42.51

Fulfillment by Amazon (FBA) is a service we offer sellers that lets them store their products in Amazon's fulfillment centers, and we directly pack, ship, and provide customer service for these products. Something we hope you'll especially enjoy: FBA items qualify for FREE Shipping and Amazon Prime.

If you're a seller, Fulfillment by Amazon can help you grow your business. Learn more about the program.

Kindle app logo image

Download the free Kindle app and start reading Kindle books instantly on your smartphone, tablet, or computer - no Kindle device required .

Read instantly on your browser with Kindle for Web.

Using your mobile phone camera - scan the code below and download the Kindle app.

QR code to download the Kindle App

Image Unavailable

Problem-Solving Through Problems (Problem Books in Mathematics)

  • To view this video download Flash Player

Follow the author

Loren C Larson

Problem-Solving Through Problems (Problem Books in Mathematics) First Edition

Purchase options and add-ons.

  • ISBN-10 0387961712
  • ISBN-13 978-0387961712
  • Edition First Edition
  • Publisher Springer
  • Publication date January 1, 1983
  • Part of series Problem Books in Mathematics
  • Language English
  • Dimensions 6.1 x 0.8 x 9.25 inches
  • Print length 363 pages
  • See all details

Amazon First Reads | Editors' picks at exclusive prices

Frequently bought together

Problem-Solving Through Problems (Problem Books in Mathematics)

Similar items that may deliver to you quickly

Putnam and Beyond

Editorial Reviews

From the reviews:

"This is a very welcome addition. The main message of the book is that the only way to learn to solve problems is to solve problems! I found this book very helpful. I am quite sure the book will be in constant use and I have no hesitation in recommending it." (The Mathematical Gazette)

Product details

  • Publisher ‏ : ‎ Springer; First Edition (January 1, 1983)
  • Language ‏ : ‎ English
  • Paperback ‏ : ‎ 363 pages
  • ISBN-10 ‏ : ‎ 0387961712
  • ISBN-13 ‏ : ‎ 978-0387961712
  • Item Weight ‏ : ‎ 2.4 pounds
  • Dimensions ‏ : ‎ 6.1 x 0.8 x 9.25 inches
  • #116 in Mathematical Analysis (Books)
  • #723 in Pure Mathematics (Books)
  • #6,769 in Unknown

About the author

Loren c larson.

Discover more of the author’s books, see similar authors, read author blogs and more

Customer reviews

Customer Reviews, including Product Star Ratings help customers to learn more about the product and decide whether it is the right product for them.

To calculate the overall star rating and percentage breakdown by star, we don’t use a simple average. Instead, our system considers things like how recent a review is and if the reviewer bought the item on Amazon. It also analyzed reviews to verify trustworthiness.

  • Sort reviews by Top reviews Most recent Top reviews

Top reviews from the United States

There was a problem filtering reviews right now. please try again later..

problem solving through c

Top reviews from other countries

  • Amazon Newsletter
  • About Amazon
  • Accessibility
  • Sustainability
  • Press Center
  • Investor Relations
  • Amazon Devices
  • Amazon Science
  • Start Selling with Amazon
  • Sell apps on Amazon
  • Supply to Amazon
  • Protect & Build Your Brand
  • Become an Affiliate
  • Become a Delivery Driver
  • Start a Package Delivery Business
  • Advertise Your Products
  • Self-Publish with Us
  • Host an Amazon Hub
  • › See More Ways to Make Money
  • Amazon Visa
  • Amazon Store Card
  • Amazon Secured Card
  • Amazon Business Card
  • Shop with Points
  • Credit Card Marketplace
  • Reload Your Balance
  • Amazon Currency Converter
  • Your Account
  • Your Orders
  • Shipping Rates & Policies
  • Amazon Prime
  • Returns & Replacements
  • Manage Your Content and Devices
  • Recalls and Product Safety Alerts
  • Conditions of Use
  • Privacy Notice
  • Consumer Health Data Privacy Disclosure
  • Your Ads Privacy Choices

swayam-logo

  • Review Assignment
  • Announcements
  • About the Course
  • Explore Courses

Problem Solving Through Programming In C - Unproctored Exam Test - Session 1

Dear Students, The questions for the Unproctored Programming Exam Test are available now in the course page. Please fine the questions under the course outline:  Programming Exam 2022 (First Session) (10am - 11am). You can access the questions in the below link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=189 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=190 Best of Luck! -NPTEL Team

Problem Solving Through Programming In C - Unproctored Exam Test - Session 2

Dear Students, The questions for the Unproctored Programming Exam Test are available now in the course page. Please fine the questions under the course outline:  Programming Exam 2022 (Second Session) (8pm - 9pm). You can access the questions in the below link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=191 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=192 Best of Luck! -NPTEL Team

Reminder 4 : Problem solving through Programming In C: Online Programming test (Jan 2022 Semester)

Dear Candidate Note: If you are registering and taking exam in Jan-Apr 2022 exam , it is mandatory to take this Non-proctored exam as the previous semester Non-proctored programming exam score will not be considered. The criteria for certification of this course " Problem solving through Programming In C " is different because of the online programming exam component.  Please read the following carefully. Final score = 25% of Assignment score + 50% of Online exam score (Proctored) + 25% of Programming exam (unproctored).  - Unproctored means, candidates will be taking the exam from college/home without NPTEL team present for monitoring the test- with access to all resources. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  How to take the online programming test 1. Go to:  https://onlinecourses.nptel.ac.in/noc21_cs01/ 2. Log in using the same email id which you have been accessing the course (i.e. using to watch videos & submit Assignments) 3. There will be sections under the course outline  "Programming Test (April 11)"   that will have the online programming exam link.   4. You can click on this link and attempt the programming exam. Date:  April 11 , 2022 (Monday) First Session:  10.00AM - 11.00AM   (Duration of the session will be 1 hr) Second Session: 8.00PM - 9.00PM  (Duration of the session will be  1 hr ) Note - You can take any one or both sessions too; the best score will be considered towards the final certification score. - You can take the exam from your college or home. - The exam has to be taken in pc or laptop.  DO NOT TRY TO TAKE THE EXAM USING YOUR MOBILE PHONE. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  - If you encounter any issues during the exam, please write to   [email protected] IMPORTANT: CERTIFICATION CRITERIA     Candidates have to come to the exam center and take the theory test on  April 23,2022.     It is mandatory to take the Proctored in-person final exam to obtain a certificate.     To pass the course and get a certificate:   Assignment score >= 40/100 AND Programming exam score >= 40/100 AND Proctored exam score >= 40/100         OR   Assignment score >= 10/25 AND Programming exam score >= 10/25 AND Proctored exam score >= 20/50    All 3 conditions have to be satisfied. All the best to the candidates! -NPTEL Team.

Reminder 3 : Problem solving through Programming In C: Online Programming test (Jan 2022 Semester)

Reminder 2 : problem solving through programming in c: online programming test (jan 2022 semester), reminder 1 : problem solving through programming in c: online programming test (jan 2022 semester), problem solving through programming in c: online programming test (jan 2022 semester), nptel: exam registration is open now for jan 2022 courses.

Dear Candidate,

Here is a golden opportunity for those who had previously enrolled in this course during the Jan 2021 semester, but could not participate in the exams or were absent/did not pass the exam for this course. This course is being reoffered in Jan 2022 and we are giving you another chance to write the exam in April 2022 and obtain a certificate based on NPTEL norms. Do not let go of this unique opportunity to earn a certificate from the IITs/IISc.

IMPORTANT instructions for learners - Please read this carefully  

1. The exam date for this course: April 23, 2022

2. Certification exam registration URL is: CLICK HERE

Please fill the exam form using the same Enrolled email id & make fee payment via the form, as before.

3. Choose from the Cities where exam will be conducted: Exam Cities  

4. You DO NOT have to re-enroll in the courses. 

5. You DO NOT have to resubmit Assignments OR participate in the non-proctored 

programming exams.

6. If you do enroll to Jan 2022 course, we will take the best average assignment scores/non-proctored programming exam score across the two semesters

Our suggestion:

- Please check once if you have >= 40/100  in average assignment score and also participate in the non-proctored programming exams that will be conducted during this semester in the course to become eligible for the e-certificate, wherever applicable.

- If not, please submit Assignments again in the Jan 2022 course & and also participate in the non-proctored programming exams to become eligible for the e-certificate.

- You can also submit Assignments again and participate in the non-proctored programming exams if you want to better your previous scores.

RECOMMENDATION: Please enroll to the Jan 2022 course and brush up your lessons for the exam.

7. Exam fees: 

If you register for the exam and pay before March 14, 2022, 10:00 AM, Exam fees will be Rs. 1000/- per exam . 

If you register for exam before March 14, 2022, 10:00 AM and have not paid or if you register between March 14, 2022, 10:00 AM & March 18, 2022, 10:00 AM, Exam fees will be Rs. 1500/- per exam 

8. 50% fee waiver for the following categories: 

Students belonging to the SC/ST category: please select Yes for the SC/ST option and upload the correct Community certificate.

Students belonging to the PwD category with more than 40% disability: please select Yes for the option and upload the relevant Disability certificate. 

9. Last date for exam registration: March 18, 2022 10:00 AM (Friday). 

10. Mode of payment: Online payment - debit card/credit card/net banking. 

11. HALL TICKET: 

The hall ticket will be available for download tentatively by 2 weeks prior to the exam date . We will confirm the same through an announcement once it is published. 

12. FOR CANDIDATES WHO WOULD LIKE TO WRITE MORE THAN 1 COURSE EXAM:- you can add or delete courses and pay separately – till the date when the exam form closes. Same day of exam – you can write exams for 2 courses in the 2 sessions. Same exam center will be allocated for both the sessions. 

13. Data changes: 

Last date for data changes: March 18, 2022 10:00 AM :  

All the fields in the Exam form except for the following ones can be changed until the form closes. 

The following 6 fields can be changed ONLY when there are NO courses in the course cart. And you will be able to edit the following fields only if you: - 

REMOVE unpaid courses from the cart And/or - CANCEL paid courses 

1. Do you come under the SC/ST category? * 

2. SC/ST Proof 

3. Are you a person with disabilities? * 

4. Are you a person with disabilities above 40%? 

5. Disabilities Proof 

6. What is your role ? 

Note: Once you remove or cancel a course, you will be able to edit these fields immediately. 

But, for cancelled courses, refund of fees will be initiated only after 2 weeks. 

14. LAST DATE FOR CANCELLING EXAMS and getting a refund: March 18, 2022 10:00 AM  

15. Click here to view Timeline and Guideline : Guideline  

Domain Certification

Domain Certification helps learners to gain expertise in a specific Area/Domain. This can be helpful for learners who wish to work in a particular area as part of their job or research or for those appearing for some competitive exam or becoming job ready or specialising in an area of study.  

Every domain will comprise Core courses and Elective courses. Once a learner completes the requisite courses per the mentioned criteria, you will receive a Domain Certificate showcasing your scores and the domain of expertise. Kindly refer to the following link for the list of courses available under each domain: https://nptel.ac.in/noc/Domain/discipline.html

Outside India Candidates

Candidates who are residing outside India may also fill the exam form and pay the fees. Mode of exam and other details will be communicated to you separately.

Thanks & Regards, 

Reminder 4: Problem solving through Programming In C: Online Programming test (July 2021 Semester)

Dear Candidate Note: If you are registering and taking exam in July-Dec 2021 exam , it is mandatory to take this Non-proctored exam as the previous semester Non-proctored programming exam score will not be considered. The criteria for certification of this course " Problem solving through Programming In C " is different because of the online programming exam component.  Please read the following carefully. Final score = 25% of Assignment score + 50% of Online exam score (Proctored) + 25% of Programming exam (unproctored).  - Unproctored means, candidates will be taking the exam from college/home without NPTEL team present for monitoring the test- with access to all resources. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  How to take the online programming test 1. Go to:  https://onlinecourses.nptel.ac.in/noc21_cs01/ 2. Log in using the same email id which you have been accessing the course (i.e. using to watch videos & submit Assignments) 3. There will be sections under the course outline  "Programming Test (October 17)"   that will have the online programming exam link.   4. You can click on this link and attempt the programming exam. Date:   October 17, 2021 (Sunday) First Session:  10.00AM - 11.00AM   (Duration of the session will be 1 hr) Second Session: 8.00PM - 9.00PM  (Duration of the session will be  1 hr ) Note - You can take any one or both sessions too; the best score will be considered towards the final certification score. - You can take the exam from your college or home. - The exam has to be taken in pc or laptop.  DO NOT TRY TO TAKE THE EXAM USING YOUR MOBILE PHONE. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  - If you encounter any issues during the exam, please write to   [email protected] IMPORTANT: CERTIFICATION CRITERIA     Candidates have to come to the exam center and take the theory test on  October 23,2021.     It is mandatory to take the Proctored in-person final exam to obtain a certificate.     To pass the course and get a certificate:   Assignment score >= 40/100 AND Programming exam score >= 40/100 AND Proctored exam score >= 40/100         OR   Assignment score >= 10/25 AND Programming exam score >= 10/25 AND Proctored exam score >= 20/50    All 3 conditions have to be satisfied. All the best to the candidates! -NPTEL Team.

Problem solving through Programming In C - Unproctored Exam Test - Session 2

Dear Students, The questions for the Unproctored Programming Exam Test are available now in the course page. Please fine the questions under the course outline  Programming Exam Oct 2021 (Second Session) :  (8.00PM - 9.00PM). You can access the questions in the below link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=185 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=184 Best of Luck! -NPTEL Team

Problem solving through Programming In C - Unproctored Exam Test - Session 1

Dear Students, The questions for the Unproctored Programming Exam Test are available now in the course page. Please fine the questions under the course outline Programming Exam Oct 2021 (First Session): (10.00AM - 11.00AM). You can access the questions in the below link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=181 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=183 Best of Luck! -NPTEL Team

Reminder 3: Problem solving through Programming In C: Online Programming test (July 2021 Semester)

Reminder 1: problem solving through programming in c: online programming test (july 2021 semester), reminder 2: problem solving through programming in c: online programming test (july 2021 semester), thank you for learning with nptel.

Dear Learner, Thank you for taking the course with NPTEL!! Hope you enjoyed the journey with us. The results for this course have been published and we are closing this course now.  You will still have access to the contents and assignments of this course, if you click on the course name from the "Mycourses" tab on swayam.gov.in. The discussion forum is being closed though and you cannot ask questions here. For any further queries please write to [email protected] . - Team NPTEL

Problem solving through Programming In C: Result Published!

  • Hard copies of certificates will not be dispatched.
  • The duration shown in the certificate will be based on the timeline of offering of the course in 2021, irrespective of which Assignment score that will be considered.

Feedback for Problem solving through Programming In C

Dear student, We are glad that you have attended the NPTEL online certification course. We hope you found the NPTEL Online course useful and have started using NPTEL extensively. In this regard, we would like to have feedback from you regarding our course and whether there are any improvements, you would like to suggest.   We are enclosing an online feedback form and would request you to spare some of your valuable time to input your observations. Your esteemed input will help us in serving you better. The link to give your feedback is: https://docs.google.com/forms/d/1DUKdDzK6b24hpJSBTnuurZSfFwDAy30TMwpNM1vIt48/viewform We thank you for your valuable time and feedback. Thanks & Regards, -NPTEL Team

Problem solving through Programming In C : Online Programming test (July 2021 Semester)

Problem solving through programming in c: open now for exam registration july 2021.

Dear Candidate, Here is a golden opportunity for those who had previously enrolled in this course during the  Jan 2021  semester, but could not participate in the exams or were absent/did not pass the exam for this course. This course is being reoffered in July 2021 and we are giving you another chance to write the exam in Sep/Oct 2021 and obtain a certificate based on NPTEL norms. Do not let go of this unique opportunity to earn a certificate from the IITs/IISc. IMPORTANT instructions for learners - Please read this carefully 1. The exam date for this course:  October 23, 2021 2. Certification exam registration URL is:  https://examform.nptel.ac.in/     Please fill the exam form using the  same Enrolled email id  & make fee payment via the form, as before. 3. Choose from the Cities where exam will be conducted:   Exam Cities 4. You DO NOT have to re-enroll in the courses.  5. You DO NOT have to resubmit Assignments OR participate in the non-proctored  programming exams. 6. If you do enroll to July 2021 course, we will take the best average assignment scores/non-proctored programming exam score across the two semesters Our suggestion: - Please check once if you have >= 40/100  in average assignment score and also participate in the non-proctored programming exams that will be conducted during this semester in the course to become eligible for the e-certificate, wherever applicable. - If not, please submit Assignments again in the July 2021 course & and also participate in the non-proctored programming exams to become eligible for the e-certificate. - You can also submit Assignments again and participate in the non-proctored programming exams if you want to better your previous scores. RECOMMENDATION:  Please enroll to the July 2021 course and brush up your lessons for the exam. 7.  Exam fees:  If you register for the exam and pay before  Sep 13, 2021, 10:00 AM , Exam fees will be  Rs. 1000/- per exam .  If you register for exam before  Sep 13, 2021, 10:00 AM  and have not paid or if you register between  Sep 13, 2021, 10:00 AM & Sep 17, 2021, 5:00 PM , Exam fees will be  Rs. 1500/-  per exam  8. 50% fee waiver for the following categories:  Students belonging to the SC/ST category: please select Yes for the SC/ST option and upload the correct Community certificate. Students belonging to the PwD category with more than 40% disability: please select Yes for the option and upload the relevant Disability certificate.  9. Last date for exam registration: Sep 17, 2021, 5:00 PM (Friday).   10. Mode of payment: Online payment - debit card/credit card/net banking.  11. HALL TICKET:  The hall ticket will be available for download tentatively by  2 weeks prior to the exam date  . We will confirm the same through an announcement once it is published.  12. FOR CANDIDATES WHO WOULD LIKE TO WRITE MORE THAN 1 COURSE EXAM:- you can add or delete courses and pay separately – till the date when the exam form closes. Same day of exam – you can write exams for 2 courses in the 2 sessions. Same exam center will be allocated for both the sessions.  13.  Data changes:   Last date for data changes: Sep 17, 2021, 5:00 PM:  All the fields in the Exam form except for the following ones can be changed until the form closes.  The following 6 fields can be changed ONLY when there are NO courses in the course cart. And you will be able to edit the following fields only if you: -  REMOVE unpaid courses from the cart And/or - CANCEL paid courses  1. Do you come under the SC/ST category? *  2. SC/ST Proof  3. Are you a person with disabilities? *  4. Are you a person with disabilities above 40%?  5. Disabilities Proof  6. What is your role ?  Note:  Once you remove or cancel a course, you will be able to edit these fields immediately.  But, for cancelled courses, refund of fees will be initiated only after 2 weeks.  14.  LAST DATE FOR CANCELLING EXAMS and getting a refund: Sep 17, 2021, 5:00 PM   15. Click here to view Timeline and Guideline :  Guideline   Domain Certification Domain Certification helps learners to gain expertise in a specific Area/Domain. This can be helpful for learners who wish to work in a particular area as part of their job or research or for those appearing for some competitive exam or becoming job ready or specialising in an area of study.     Every domain will comprise Core courses and Elective courses. Once a learner completes the requisite courses per the mentioned criteria, you will receive a Domain Certificate showcasing your scores and the domain of expertise. Kindly refer to the following link for the list of courses available under each domain:  https://nptel.ac.in/noc/Domain/discipline.html Thanks & Regards,  NPTEL TEAM

Problem solving through Programming In C - Session I - Program II Change of score

Those who have answered the program -II of Session-I correctly regardless of whichever printf statement ("Total Repeated elements" or "Total repeated elements" ) you have used may notice that their score is shown as 50% (for this particular program only).  You do not need to worry about it. It will be treated as full marks (100%) while calculating the final score.  This is mainly done to incorporate both the printf statement.  Thanks

Dear Students, The questions for the Unproctored Programming Exam Test are available now in the course page. Please fine the questions under the course outline  Programming Exam Jan 2021 (First Session):  (10.00AM - 11.00AM). You can access the questions in the below link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=181 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=183 Best of Luck! -NPTEL Team

Dear Students, The questions for the Unproctored Programming Exam Test are available now in the course page. Please fine the questions under the course outline  Programming Exam Jan 2021 (Second Session) :  (8.00PM - 9.00PM). You can access the questions in the below link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=185 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=184 Best of Luck! -NPTEL Team

April 2021 NPTEL Exams have been postponed!

Dear learner Taking the current covid situation into consideration, the NPTEL exams scheduled to be conducted on 24/25 April stand postponed until further notice. We will keep you informed of the potential dates for the exams as the situation improves and we finalize the same. Thanks and Regards, NPTEL TEAM.

Reminder 2: Problem solving through Programming In C : Online Programming test (Jan 2021 Semester) - April 18,2021!!

Dear Learner Unproctored Programming exam for this course will be as per schedule. Date:   April 18, 2021 (Sunday) First Session:  10.00AM - 11.00AM   (Duration of the session will be 1 hr) Second Session: 8.00PM - 9.00PM  (Duration of the session will be  1 hr ) Please check previous announcement for more details. -NPTEL Team

Problem solving through Programming In C - Week 12 Question no. 10 Correction

Week 12 Question no. 10 in the statement if((x == sizeof(int) + 2*sizeof(char)) one extra bracket is printed after the if statement. Kindly ignore the typo and answer accordingly. The correct statement will be if(x == sizeof(int) + 2*sizeof(char))

Problem solving through Programming In C - Solution for Week 12 Assignment

Dear Learners,

Detailed Solution for Assignment 12 is available now in the Course Outline section. Please go through the solution and in case of any doubt post your queries in the forum.

-NPTEL Team

Problem solving through Programming In C : Assignment 6 question no 6

Dear Students, There is a mistake in assignment 6 question no 6. Hence the question is not considered for evaluation. The re-evaluation has been done. The updated score is displayed under Progress tab. Sorry for the inconvenience. -NPTEL Team

Problem solving through Programming In C - Solution for Week 11 Assignment

Detailed Solution for Assignment 11 is available now in the Course Outline section. Please go through the solution and in case of any doubt post your queries in the forum.

Problem solving through Programming In C - Week 12 Feedback Form

Thank you for enrolling to this NPTEL course and we hope you have gone through the contents for this week and also attempted the assignment.

We value your feedback and wish to know how you found the videos and the questions asked - whether they were easy, difficult, as per your expectations, etc

We shall use this to make the course better and we can also know from the feedback which concepts need more explanation, etc.

Please do spare some time to give your feedback - comprises just 5 questions - should not take more than a minute, but makes a lot of difference for us as we know what the Learners feel.

Here is the link to the form: https://docs.google.com/forms/d/e/1FAIpQLScnQOFwbrWSE19GlYdIR1qcDTVrDoHNVkrnGyIALvrXv7Yrqg/viewform

Exam Format - April 24,2021

Dear Candidate, ****This is applicable only for the exam registered candidates**** Type of exam will be available in the list: Click Here You will have to appear at the allotted exam center and produce your Hall ticket and Government Photo Identification Card (Example: Driving License, Passport, PAN card, Voter ID, Aadhaar-ID with your Name, date of birth, photograph and signature) for verification and take the exam in person.  You can find the final allotted exam center details in the hall ticket. The hall ticket is yet to be released . We will notify the same through email and SMS. Type of exam: Computer based exam (Please check in the above list corresponding to your course name) The questions will be on the computer and the answers will have to be entered on the computer; type of questions may include multiple choice questions, fill in the blanks, essay-type answers, etc. Type of exam: Paper and pen Exam  (Please check in the above list corresponding to your course name) The questions will be on the computer. You will have to write your answers on sheets of paper and submit the answer sheets. Papers will be sent to the faculty for evaluation. On-Screen Calculator Demo Link: Kindly use the below link to get an idea of how the On-screen calculator will work during the exam. https://tcsion.com/ OnlineAssessment/ ScientificCalculator/ Calculator.html NOTE: Physical calculators are not allowed inside the exam hall. -NPTEL Team

Problem solving through Programming In C - Week 12 is live now!!

Dear Students

The lecture videos for Week 12 have been uploaded for the course Problem solving through Programming In C . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=94&lesson=95

The other lectures of this week are accessible from the navigation bar to the left. Please remember to login into the website to view contents (if you aren't logged in already).

Assignment for  Week 12 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=94&assessment=175 Programming Assignment for  Week 11 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=168 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=176 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=177 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=178 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=179

The assignment has to be submitted on or before Wednesday, 2021-04-14, 23:59 IST. The programming assignment has to be submitted on or before Thursday, 2021-04-15, 23:59 IST.

As we have done so far, please use the discussion forums if you have any questions on this module.

--NPTEL Team

Problem solving through Programming In C - Week 11 Feedback Form

Problem solving through programming in c - solution for week 10 assignment.

Detailed Solution for Assignment 10 is available now in the Course Outline section. Please go through the solution and in case of any doubt post your queries in the forum.

Problem solving through Programming In C - Solution for Week 9 Assignment

Detailed Solution for Assignment 9 is available now in the Course Outline section. Please go through the solution and in case of any doubt post your queries in the forum.

Problem solving through Programming In C - Week 10 Feedback Form

Problem solving through programming in c - week 11 is live now.

The lecture videos for Week 11 have been uploaded for the course Problem solving through Programming In C . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=87&lesson=88

Assignment for  Week 11 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=87&assessment=174 Programming Assignment for  Week 11 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=163 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=164 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=165 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=166 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=167

The assignment has to be submitted on or before Wednesday, 2021-04-07, 23:59 IST. The programming assignment has to be submitted on or before Thursday, 2021-04-08, 23:59 IST.

Problem solving through Programming In C - Week 9 Feedback Form

Problem solving through programming in c - solution for week 8 assignment.

Detailed Solution for Assignment 8 is available now in the Course Outline section. Please go through the solution and in case of any doubt post your queries in the forum.

Problem solving through Programming In C - Week 10 is live now!!

The lecture videos for Week 10 have been uploaded for the course Problem solving through Programming In C . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=80&lesson=81

Assignment for  Week 10 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=80&assessment=162 Programming Assignment for  Week 10 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=169 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=170 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=171 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=172 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=173

The assignment has to be submitted on or before Wednesday, 2021-03-31, 23:59 IST. The programming assignment has to be submitted on or before Thursday, 2021-04-01, 23:59 IST.

Problem solving through Programming In C - Week 9 is live now!!

The lecture videos for Week 9 have been uploaded for the course Problem solving through Programming In C . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=73&lesson=74

Assignment for  Week 9 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=73&assessment=156 Programming Assignment for  Week 9 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=157 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=158 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=159 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=160 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=161

The assignment has to be submitted on or before Wednesday, 2021-03-24, 23:59 IST. The programming assignment has to be submitted on or before Thursday, 2021-03-25, 23:59 IST.

Problem solving through Programming In C - Week 8 Feedback Form

Reminder 1: problem solving through programming in c : online programming test (postponed to april 18,2021).

Dear Candidate The criteria for certification of this course " Problem solving through Programming In C " is different because of the online programming exam component.  Please read the following carefully. Final score = 25% of Assignment score + 50% of Online exam score (Proctored) + 25% of Programming exam (unproctored).  - Unproctored means, candidates will be taking the exam from college/home without NPTEL team present for monitoring the test- with access to all resources. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  How to take the online programming test 1. Go to:  https://onlinecourses.nptel.ac.in/noc21_cs01/ 2. Log in using the same email id which you have been accessing the course (i.e. using to watch videos & submit Assignments) 3. There will be sections under the course outline  "Programming Test (April 18)"   that will have the online programming exam link.   4. You can click on this link and attempt the programming exam. Date:   April 18, 2021 (Sunday) First Session:  10.00AM - 11.00AM   (Duration of the session will be 1 hr) Second Session: 8.00PM - 9.00PM  (Duration of the session will be  1 hr ) Note - You can take any one or both sessions too; the best score will be considered towards the final certification score. - You can take the exam from your college or home. - The exam has to be taken in pc or laptop.  DO NOT TRY TO TAKE THE EXAM USING YOUR MOBILE PHONE. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  - If you encounter any issues during the exam, please write to   [email protected] IMPORTANT: CERTIFICATION CRITERIA     Candidates have to come to the exam center and take the theory test on  April 24,2021.     It is mandatory to take the Proctored in-person final exam to obtain a certificate.     To pass the course and get a certificate:   Assignment score >= 40/100 AND Programming exam score >= 40/100 AND Proctored exam score >= 40/100         OR   Assignment score >= 10/25 AND Programming exam score >= 10/25 AND Proctored exam score >= 20/50    All 3 conditions have to be satisfied. All the best to the candidates! -NPTEL Team.

Problem solving through Programming In C - Solution for Week 7 Assignment

Detailed Solution for Assignment 7 is available now in the Course Outline section. Please go through the solution and in case of any doubt post your queries in the forum.

Problem solving through Programming In C - Week 8 is live now!!

The lecture videos for Week 8 have been uploaded for the course Problem solving through Programming In C . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=66&lesson=67

Assignment for  Week 8 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=66&assessment=150 Programming Assignment for  Week 8 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=151 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=152 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=153 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=154 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=155

The assignment has to be submitted on or before Wednesday, 2021-03-17, 23:59 IST. The programming assignment has to be submitted on or before Thursday, 2021-03-18, 23:59 IST.

Problem solving through Programming In C - Week 6 Feedback Form

Problem solving through programming in c - solution for week 6 assignment.

Detailed Solution for Assignment 6 is available now in the Course Outline section. Please go through the solution and in case of any doubt post your queries in the forum.

Problem solving through Programming In C - Week 7 Feedback Form

Problem solving through programming in c : online programming test.

Dear Candidate The criteria for certification of this course " Problem solving through Programming In C " is different because of the online programming exam component.  Please read the following carefully. Final score = 25% of Assignment score + 50% of Online exam score (Proctored) + 25% of Programming exam (unproctored).  - Unproctored means, candidates will be taking the exam from college/home without NPTEL team present for monitoring the test- with access to all resources. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  How to take the online programming test 1. Go to:  https://onlinecourses.nptel.ac.in/noc21_cs01/ 2. Log in using the same email id which you have been accessing the course (i.e. using to watch videos & submit Assignments) 3. There will be sections under the course outline  "Programming Test (March 16)"   that will have the online programming exam link.   4. You can click on this link and attempt the programming exam. Date:   March 16, 2021 (Tuesday) First Session:  10.00AM - 11.00AM   (Duration of the session will be 1 hr) Second Session: 8.00PM - 9.00PM  (Duration of the session will be  1 hr ) Note - You can take any one or both sessions too; the best score will be considered towards the final certification score. - You can take the exam from your college or home. - The exam has to be taken in pc or laptop.  DO NOT TRY TO TAKE THE EXAM USING YOUR MOBILE PHONE. - The discussion forum will be disabled during the exam duration (during both sessions) and re-enabled thereafter.  - If you encounter any issues during the exam, please write to   [email protected] IMPORTANT: CERTIFICATION CRITERIA     Candidates have to come to the exam center and take the theory test on  April 24,2021.     It is mandatory to take the Proctored in-person final exam to obtain a certificate.     To pass the course and get a certificate:   Assignment score >= 40/100 AND Programming exam score >= 40/100 AND Proctored exam score >= 40/100         OR   Assignment score >= 10/25 AND Programming exam score >= 10/25 AND Proctored exam score >= 20/50    All 3 conditions have to be satisfied. All the best to the candidates! -NPTEL Team.

Problem solving through Programming In C - Week 7 is live now!!

The lecture videos for Week 7 have been uploaded for the course Problem solving through Programming In C . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=59&lesson=60

Assignment for  Week 7 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=59&assessment=144 Programming Assignment for  Week 7 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=145 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=146 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=147 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=148 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=149

The assignment has to be submitted on or before Wednesday, 2021-03-10, 23:59 IST. The programming assignment has to be submitted on or before Thursday, 2021-03-11, 23:59 IST.

Problem solving through Programming In C - Solution for Week 5 Assignment

Detailed Solution for Assignment 5 is available now in the Course Outline section. Please go through the solution and in case of any doubt post your queries in the forum.

Problem solving through Programming In C - Week 5 Feedback Form

Problem solving through programming in c - week 6 is live now.

The lecture videos for Week 6 have been uploaded for the course Problem solving through Programming In C . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=52&lesson=53

Assignment for  Week 6 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=52&assessment=138 Programming Assignment for  Week 6 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=139 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=140 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=141 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=142 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=143

The assignment has to be submitted on or before Wednesday, 2021-03-03, 23:59 IST. The programming assignment has to be submitted on or before Thursday, 2021-03-04, 23:59 IST.

Problem solving through Programming In C - Solution for Week 4 Assignment

Detailed Solution for Assignment 4 is available now in the Course Outline section. Please go through the solution and in case of any doubt post your queries in the forum.

Problem solving through Programming In C - Week 4 Feedback Form

Problem solving through programming in c - solution for week 3 assignment.

Detailed Solution for Assignment 3 is available now in the Course Outline section. Please go through the solution and in case of any doubt post your queries in the forum.

Problem solving through Programming In C - Week 5 is live now!!

The lecture videos for Week 5 have been uploaded for the course Problem solving through Programming In C . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=45&lesson=46

Assignment for  Week 5 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=45&assessment=127 Programming Assignment for  Week 5 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=133 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=134

The assignment has to be submitted on or before Wednesday, 2021-02-24, 23:59 IST. The programming assignment has to be submitted on or before Thursday, 2021-02-25, 23:59 IST.

Problem solving through Programming In C - Solution for Week 2 Assignment

Detailed Solution for Assignment 2 is available now in the Course Outline section. Please go through the solution and in case of any doubt post your queries in the forum.

Problem solving through Programming In C - Week 4 is live now!!

The lecture videos for Week 4 have been uploaded for the course Problem solving through Programming In C . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=38&lesson=39

Assignment for  Week 4 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=38&assessment=126 Programming Assignment for  Week 4 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=128 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=129 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=130 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=131

The assignment has to be submitted on or before Wednesday, 2021-02-17, 23:59 IST. The programming assignment has to be submitted on or before Thursday, 2021-02-18, 23:59 IST.

Problem solving through Programming In C - Week 3 Feedback Form

Problem solving through programming in c - solution for week 1 assignment.

Detailed Solution for Assignment 1 is available now in the Course Outline section. Please go through the solution and in case of any doubt post your queries in the forum.

Problem solving through Programming In C - Assignment 2 Due date Extended!!

Dear Learners, Assignment 2 has been released already and the due date for the assignment has been extended Due date of assignment 2 is  Sunday, 07-02-2021, 23:59 IST. Please note that there will not be any extension for the upcoming assignments. Note: Please check the due date of the assignments in the announcement and assignment page if you see any mismatch write to us immediately.   Thanks & Regards, -NPTEL Team

Problem solving through Programming In C - Week 3 is live now!!

The lecture videos for Week 3 have been uploaded for the course Problem solving through Programming In C . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=31&lesson=32

Assignment for  Week 3 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=31&assessment=121 Programming Assignment for  Week 3 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=122 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=123 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=124 https://onlinecourses.nptel.ac.in/noc21_cs01/progassignment?name=125

The assignment has to be submitted on or before Wednesday, 2021-02-10, 23:59 IST. The programming assignment has to be submitted on or before Thursday, 2021-02-11, 23:59 IST.

Problem solving through Programming In C - Week 2 Feedback Form

Problem solving through programming in c - week 1 feedback form, problem solving through programming in c - week 2 is live now.

The lecture videos for Week 2 have been uploaded for the course Problem solving through Programming In C . The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=24&lesson=25

Assignment for  Week 2 is also uploaded and can be accessed from the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=24&assessment=120

The assignment has to be submitted on or before Wednesday, 2021-02-03, 23:59 IST.

Problem solving through Programming In C - Download video links are available now!!

The download video links for the course Problem solving through Programming In C are available now in the course outline. Please check the download video link: https://nptel.ac.in/courses/106/105/106105171/

Problem solving through Programming In C - Week 1 assignment is live now!!

The assignment for Week 1 for the course Problem solving through Programming In C is made available early for viewing to get an idea about the assignments but the actual start date of the course remains unchanged.

Assignment 1 can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=17&assessment=119

The other Assignment 1 is accessible from the navigation bar to the left under Week 1. Please remember to login into the website to view contents (if you aren't logged in already).

The assignment has to be submitted on or before Wednesday,  2021-02-03, 23:59 IST.

Please use the discussion forums if you have any questions on this module.

Happy Learning!

Some Corrections in Video lectures of Week-1 - Problem Solving through Programming in C

Dear Learners, At 11.25 mins of the Lecture 3: Flow Chart and Pseudocode , in the flow chart of printing average of 3 numbers the final print statement should be “ Print AVG ” instead of “ Print SUM ” as we are finding the Average of 3 numbers. At 7.12 mins of the Lecture 3: Flow Chart and Pseudocode , Regarding the symbols used to represent the flow chart, generally oblong symbol is used to represent START and END of a flow chart and a parallelogram symbol is used to represent INPUT and OUTPUT, and the Circle symbol is used as a connector, when we need to represent the continuation of flow chart when there is shortage of space.  At 18.52 mins of the Lecture 3: Flow Chart and Pseudocode , in the flow chart of printing the average of N numbers: after reading the number and storing it in N we should store in another variable say M. So after the statement “ Read the value of N ” there will be another statement which will be “ M=N ” in a rectangular box. And after the decision box instead of AVG=SUM/N it will be AVG=SUM/M , as the value of N is becoming zero at the end of the decision loop.  At 28.07mins of the Lecture 3: Flow Chart and Pseudocode : in the flow chart for finding Max of N positive integer please follow the flow chart drawn in blue colour. Please ignore the corrections made. -NPTEL Team

Problem solving through Programming In C - Assignment-0-RELEASED

We welcome you all to this course. The assignment 0 for the course Problem solving through Programming In C has been released. This assignment is based on a prerequisite of the course. Kindly note that marks obtained in this assignment will not be considered for the final assessment. You can find the assignment under Week 0 unit on the left-hand side of your screen You can submit the assignment multiple times before the due date. All the best !!    

The extended due date of Assignment 0: Monday, 2021-01-25, 23:59 IST.

NPTEL: Exam Registration is open now for Jan 2021 courses!

Dear Learner,  Here is the much-awaited announcement on registering for the Jan 2021 NPTEL course certification exam.  1. The registration for the certification exam is open only to those learners who have enrolled in the course.  2. If you want to register for the exam for this course, login here using the same email id which you had used to enroll to the course in Swayam portal. Please note that Assignments submitted through the exam registered email id ALONE will be taken into consideration towards final consolidated score & certification.  3 .  Date of exam: April 24, 2021 Certification exam registration URL is:  https://examform.nptel.ac. in/   Choose from the Cities where exam will be conducted:  Exam Cities   4. Exam fees:  If you register for the exam and pay before  Mar 8, 2021, 10:00 AM,  Exam fees will be  Rs. 1000/- per exam .  If you register for exam before  Mar 8, 2021 , 10:00 AM  and have not paid or if you register between  Mar 8, 2021, 10:00 AM & Mar 12, 2021, 5:00 PM,  Exam fees will be  Rs. 1500/-  per exam  5. 50% fee waiver for the following categories:  Students belonging to the SC/ST category: please select Yes for the SC/ST option and upload the correct Community certificate. Students belonging to the PwD category with more than 40% disability: please select Yes for the option and upload the relevant Disability certificate.  6. Last date for exam registration: Mar 12, 2021 5:00 PM (Friday).  7. Mode of payment: Online payment - debit card/credit card/net banking.  8. HALL TICKET:  The hall ticket will be available for download tentatively by  2 weeks prior to the exam date .  We will confirm the same through an announcement once it is published.  9. FOR CANDIDATES WHO WOULD LIKE TO WRITE MORE THAN 1 COURSE EXAM:- you can add or delete courses and pay separately – till the date when the exam form closes. Same day of exam – you can write exams for 2 courses in the 2 sessions. Same exam center will be allocated for both the sessions.  10.  Data changes:  Last date for data changes: Mar 12, 2021, 5:00 PM:  All the fields in the Exam form except for the following ones can be changed until the form closes.  The following 6 fields can be changed ONLY when there are NO courses in the course cart. And you will be able to edit the following fields only if you: -  REMOVE unpaid courses from the cart And/or - CANCEL paid courses  1. Do you come under the SC/ST category? *  2. SC/ST Proof  3. Are you a person with disabilities? *  4. Are you a person with disabilities above 40%?  5. Disabilities Proof  6. What is your role ?  Note:  Once you remove or cancel a course, you will be able to edit these fields immediately.  But, for cancelled courses, refund of fees will be initiated only after 2 weeks.  11.  LAST DATE FOR CANCELLING EXAMS and getting a refund: Mar 12, 2021, 5:00 PM  12. Click here to view Timeline and Guideline :  Guideline    Thanks & Regards, NPTEL TEAM

Week 1 videos are live now!! - Problem solving through Programming In C

The videos for Week 1 for the course Six Sigma is made available early for viewing to get an idea about the content but the actual start date remains unchanged.

The lectures can be accessed using the following link: https://onlinecourses.nptel.ac.in/noc21_cs01/unit?unit=17&lesson=18

Welcome to NPTEL Online Course - Jan 2021!!

  • Every week, about 2.5 to 4 hours of videos containing content by the Course instructor will be released along with an assignment based on this. Please watch the lectures, follow the course regularly and submit all assessments and assignments before the due date. Your regular participation is vital for learning and doing well in the course. This will be done week on week through the duration of the course.
  • Please do the assignments yourself and even if you take help, kindly try to learn from it. These assignments will help you prepare for the final exams. Plagiarism and violating the Honor code will be taken very seriously if detected during the submission of assignments.
  • The announcement group - will only have messages from course instructors and teaching assistants - regarding the lessons, assignments, exam registration, hall tickets etc.
  • The discussion forum (Ask a question tab on the portal) - is for everyone to ask questions and interact.Anyone who knows the answers can reply to anyone's post and the course instructor/TA will also respond to your queries.
  • Please make maximum use of this feature as this will help you learn much better.
  • If you have any questions regarding the exam, registration, hall tickets, results, queries related to the technical content in the lectures, any doubts in the assignments, etc can be posted in the forum section
  • The course is free to enroll and learn from. But if you want a certificate, you have to register and write the proctored exam conducted by us in person at any of the designated exam centres.
  • The exam is optional for a fee of Rs 1000/- (Rupees one thousand only).
  • Date and Time of Exams: April 24,2021 Morning session 9am to 12 noon; Afternoon Session 2pm to 5pm.
  • Registration url: Announcements will be made when the registration form is open for registrations.
  • The online registration form has to be filled and the certification exam fee needs to be paid. More details will be made available when the exam registration form is published. If there are any changes, it will be mentioned then.
  • Please check the form for more details on the cities where the exams will be held, the conditions you agree to when you fill the form etc.
  • Once again, thanks for your interest in our online courses and certification. Happy learning. 

NPTEL : Keep in touch with us via Social Media

Dear Learner You already must know NPTEL is providing course certificates to those who complete the course successfully, with the learning happening right at your home or where you are. But NPTEL also keeps bringing out new initiatives and courses - which we would like to keep you posted on. Click the below links to like and follow us on Social Media for instant Updates: Facebook: https://www.facebook.com/NPTELNoc Twitter: https://twitter.com/nptelindia Linkedin: https://www.linkedin.com/in/nptel-india-085866ba/ Instagram: https://www.instagram.com/swayam_nptel/  Like and Follow us on Social Media. Let's create a better future by learning and growing together.  -NPTEL Team.

A project of

problem solving through c

In association with

problem solving through c

Book cover

  • © 1983

Problem-Solving Through Problems

  • Loren C. Larson 0

Department of Mathematics, St. Olaf College, Northfield, USA

You can also search for this author in PubMed   Google Scholar

Part of the book series: Problem Books in Mathematics (PBM)

21k Accesses

41 Citations

5 Altmetric

  • Table of contents

About this book

Authors and affiliations, bibliographic information.

  • Publish with us

Buying options

  • Available as EPUB and PDF
  • Read on any device
  • Instant download
  • Own it forever
  • Compact, lightweight edition
  • Dispatched in 3 to 5 business days
  • Free shipping worldwide - see info

Tax calculation will be finalised at checkout

Other ways to access

This is a preview of subscription content, log in via an institution to check for access.

Table of contents (8 chapters)

Front matter.

Loren C. Larson

Two Important Principles: Induction and Pigeonhole

Summation of series, intermediate real analysis, inequalities, back matter.

  • Cauchy-Schwarz Inequality
  • Problem solving
  • Schwarz inequality
  • fundamental theorem
  • mean value theorem
  • pigeonhole principle

Book Title : Problem-Solving Through Problems

Authors : Loren C. Larson

Series Title : Problem Books in Mathematics

DOI : https://doi.org/10.1007/978-1-4612-5498-0

Publisher : Springer New York, NY

eBook Packages : Springer Book Archive

Copyright Information : Springer-Verlag New York Inc. 1983

Softcover ISBN : 978-0-387-96171-2 Published: 17 July 1985

eBook ISBN : 978-1-4612-5498-0 Published: 06 December 2012

Series ISSN : 0941-3502

Series E-ISSN : 2197-8506

Edition Number : 1

Number of Pages : XI, 352

Number of Illustrations : 11 b/w illustrations

Topics : Analysis , Mathematics, general

Policies and ethics

  • Find a journal
  • Track your research

For more audio journalism and storytelling, download New York Times Audio , a new iOS app available for news subscribers.

The Daily logo

  • March 29, 2024   •   48:42 Hamas Took Her, and Still Has Her Husband
  • March 28, 2024   •   33:40 The Newest Tech Start-Up Billionaire? Donald Trump.
  • March 27, 2024   •   28:06 Democrats’ Plan to Save the Republican House Speaker
  • March 26, 2024   •   29:13 The United States vs. the iPhone
  • March 25, 2024   •   25:59 A Terrorist Attack in Russia
  • March 24, 2024   •   21:39 The Sunday Read: ‘My Goldendoodle Spent a Week at Some Luxury Dog ‘Hotels.’ I Tagged Along.’
  • March 22, 2024   •   35:30 Chuck Schumer on His Campaign to Oust Israel’s Leader
  • March 21, 2024   •   27:18 The Caitlin Clark Phenomenon
  • March 20, 2024   •   25:58 The Bombshell Case That Will Transform the Housing Market
  • March 19, 2024   •   27:29 Trump’s Plan to Take Away Biden’s Biggest Advantage
  • March 18, 2024   •   23:18 Your Car May Be Spying on You
  • March 17, 2024 The Sunday Read: ‘Sure, It Won an Oscar. But Is It Criterion?’

Hamas Took Her, and Still Has Her Husband

The story of one family at the center of the war in gaza..

  • Share full article

Hosted by Sabrina Tavernise

Produced by Lynsea Garrison and Mooj Zadie

With Rikki Novetsky and Shannon Lin

Edited by Michael Benoist

Original music by Marion Lozano ,  Dan Powell ,  Diane Wong and Elisheba Ittoop

Engineered by Alyssa Moxley

Listen and follow The Daily Apple Podcasts | Spotify | Amazon Music

Warning: this episode contains descriptions of violence.

It’s been nearly six months since the Hamas-led attacks on Israel, when militants took more than 200 hostages into Gaza.

In a village called Nir Oz, near the border, one quarter of residents were either killed or taken hostage. Yocheved Lifshitz and her husband, Oded Lifshitz, were among those taken.

Today, Yocheved and her daughter Sharone tell their story.

On today’s episode

Yocheved Lifshitz, a former hostage.

Sharone Lifschitz, daughter of Yocheved and Oded Lifshitz.

A group of people are holding up signs in Hebrew with photos of a man. In the front is a woman with short hair and glasses.

Background reading

Yocheved Lifshitz was beaten and held in tunnels built by Hamas for 17 days.

There are a lot of ways to listen to The Daily. Here’s how.

We aim to make transcripts available the next workday after an episode’s publication. You can find them at the top of the page.

Fact-checking by Susan Lee .

Additional music by Oded Lifshitz.

Translations by Gabby Sobelman .

Special thanks to Menachem Rosenberg, Gershom Gorenberg , Gabby Sobelman , Yotam Shabtie, and Patrick Kingsley .

The Daily is made by Rachel Quester, Lynsea Garrison, Clare Toeniskoetter, Paige Cowett, Michael Simon Johnson, Brad Fisher, Chris Wood, Jessica Cheung, Stella Tan, Alexandra Leigh Young, Lisa Chow, Eric Krupke, Marc Georges, Luke Vander Ploeg, M.J. Davis Lin, Dan Powell, Sydney Harper, Mike Benoist, Liz O. Baylen, Asthaa Chaturvedi, Rachelle Bonja, Diana Nguyen, Marion Lozano, Corey Schreppel, Rob Szypko, Elisheba Ittoop, Mooj Zadie, Patricia Willens, Rowan Niemisto, Jody Becker, Rikki Novetsky, John Ketchum, Nina Feldman, Will Reid, Carlos Prieto, Ben Calhoun, Susan Lee, Lexie Diao, Mary Wilson, Alex Stern, Dan Farrell, Sophia Lanman, Shannon Lin, Diane Wong, Devon Taylor, Alyssa Moxley, Summer Thomad, Olivia Natt, Daniel Ramirez and Brendan Klinkenberg.

Our theme music is by Jim Brunberg and Ben Landsverk of Wonderly. Special thanks to Sam Dolnick, Paula Szuchman, Lisa Tobin, Larissa Anderson, Julia Simon, Sofia Milan, Mahima Chablani, Elizabeth Davis-Moorer, Jeffrey Miranda, Renan Borelli, Maddy Masiello, Isabella Anderson and Nina Lassam.

Advertisement

IMAGES

  1. Problem Solving Through Programming in C

    problem solving through c

  2. O-Level Made Simple: Programming And Problem Solving Through C Language

    problem solving through c

  3. Problem Solving Through C Book at Rs 395/piece

    problem solving through c

  4. Problem Solving Through C-Programming: Introduction to C Language

    problem solving through c

  5. Problem solving through C (Problem 5)

    problem solving through c

  6. Problem-Solving through C Language (Beginner to Advanced Level)

    problem solving through c

VIDEO

  1. Exercise 1: How to solve coding problems

  2. NPTEL Problem Solving through Programming in C ASSIGNMENT 6 ANSWERS 2024

  3. Problem solving through C (Problem 1)

  4. BCA I sem programming and problem solving through C important topics

  5. Problem solving through C (Problem 5)

  6. Problem solving through C (Problem 4)

COMMENTS

  1. Problem Solving Through Programming In C

    Learners enrolled: 29073. ABOUT THE COURSE : This course is aimed at enabling the students to. Formulate simple algorithms for arithmetic and logical problems. Translate the algorithms to programs (in C language) Test and execute the programs and correct syntax and logical errors. Implement conditional branching, iteration and recursion.

  2. C Exercises

    This C Exercise page contains the top 30 C exercise questions with solutions that are designed for both beginners and advanced programmers. It covers all major concepts like arrays, pointers, for-loop, and many more. So, Keep it Up! Solve topic-wise C exercise questions to strengthen your weak topics.

  3. Problem Solving Through Programming in C

    Note: Practice C Programs for problem solving through programming in C. Problem Solving Steps. Problem-solving is a creative process which defines systematization and mechanization. There are a number of steps that can be taken to raise the level of one's performance in problem-solving. A problem-solving technique follows certain steps in ...

  4. C Programs

    C Programs: Practicing and solving problems is the best way to learn anything. Here, we have provided 100+ C programming examples in different categories like basic C Programs, Fibonacci series in C, String, Array, Base Conversion, Pattern Printing, Pointers, etc. These C programs are the most asked interview questions from basic to advanced level.

  5. Solve C

    Join over 16 million developers in solving code challenges on HackerRank, one of the best ways to prepare for programming interviews. ... Printing Pattern Using Loops. Medium C (Basic) Max Score: 30 Success Rate: 95.89%. Solve Challenge. Status. Solved. Unsolved. Skills. C (Basic) C (Intermediate) Difficulty. Easy. Medium. Hard. Subdomains ...

  6. Problem solving through Programming In C

    This course is aimed at enabling the students toFormulate simple algorithms for arithmetic and logical problems.Translate the algorithms to programs (in C la...

  7. Problem Solving Through Programming In C

    Week 1 :Introduction to Problem Solving through programs, Flowcharts/Pseudo codes, the compilation process, Syntax and Semantic errors, Variables and Data Types Week 2 :Arithmetic expressions, Relational Operations, Logical expressions; Introduction to Conditional Branching Week 3 :Conditional Branching and Iterative Loops Week 4 :Arranging things : Arrays

  8. Problem solving through Programming In C

    Problem solving through Programming In C. ABOUT THE COURSE This course is aimed at enabling the students to. ·formulate simple algorithms for arithmetic and logical problems·translate the algorithms to programs (in C language)·test and execute the programs and correct syntax and logical errors·implement conditional branching, iteration and ...

  9. PROBLEM SOLVING WITH C

    PROBLEM SOLVING WITH C. This self-readable and student-friendly text provides a strong programming foundation to solve problems with C language through its well-supported structured programming methodology, rich set of operators and data types. It is designed to help students build efficient and compact programs.

  10. C programming Exercises, Practice, Solution

    C is a general-purpose, imperative computer programming language, supporting structured programming, lexical variable scope and recursion, while a static type system prevents many unintended operations. C was originally developed by Dennis Ritchie between 1969 and 1973 at Bell Labs. It has since become one of the most widely used programming ...

  11. NPTEL

    Problem solving through Programming In C By Prof. Anupam Basu | IIT Kharagpur INTENDED AUDIENCE : BE/BTech in all disciplines BCA/MCA/M. Sc INDUSTRY SUPPORT ...

  12. Problem solving through Programming In C

    Share your videos with friends, family, and the world

  13. Problem-Solving Through Programming In C

    In this article, we will be tackling problem-solving through C programming. For embedded devices, C is the most extensively used language. C is a structured programming language with a large number of built-in functions and operators that can be used to create complicated programs. It's crucial to be able to solve problems in C. Don't get ...

  14. NPTEL :: Computer Science and Engineering

    Lecture 7 : Introduction to C Programming Language : Download: 8: Lecture 8 : Variables and Variable Types in C: Download: 9: Lecture 9 : Introducing Functions: Download: 10: Lecture 10 : Address and Content of Variables and Types: Download: 11: Lecture 11 : Assignment Statement and Operators in C: Download: 12: Lecture 12 : Arithmetic ...

  15. PDF Loren C. Larson

    Title: Loren C. Larson - Problem-Solving Through Problems - (Problems Books in Mathematics Vol 5) - Springer-Verlag, 1982 - 332p - OK. Author: Igor

  16. Problem Solving through Programming in C

    Problem Solving through Programming in C. By Prof. Anupam Basu | IIT Kharagpur. Learners enrolled: 25190. This course is aimed at enabling the students to. Formulate simple algorithms for arithmetic and logical problems. Translate the algorithms to programs (in C language) Test and execute the programs and correct syntax and logical errors.

  17. Problem Solving with Computer

    Step 1: Identify and Define Problem. Explain you problem clearly as possible as you can. Step 2: Generate Possible Solutions. List out all the solution that you find. Don't focus on the quality of the solution. Generate the maximum number of solution as you can without considering the quality of the solution.

  18. Problem-Solving Through Problems (Problem Books in Mathematics)

    Finally, a book that develops problem solving techniques in a structured way for the Putnam. However, the techniques can be generally applicable to solve problems in many different areas. The power of using "first principles" to solve problems that at first sight seem almost impossible is brought out clearly.

  19. Problem solving through Programming In C

    The criteria for certification of this course " Problem solving through Programming In C " is different because of the online programming exam component. Please read the following carefully. Final score = 25% of Assignment score + 50% of Online exam score (Proctored) + 25% of Programming exam (unproctored).

  20. Problem-Solving Through Problems

    The book is both an anthology of problems and a manual of instruction. It contains over 700 problems, over one-third of which are worked in detail. Each problem is chosen for its natural appeal and beauty, but primarily to provide the context for illustrating a given problem-solving method. The aim throughout is to show how a basic set of ...

  21. How to Prepare for Problem Solving through Programming in C ...

    How to Prepare for Problem Solving through Programming in C NPTEL Exam ( Proctored Exam )Tips and Tricks for cracking Proctored Exam of Problem Solving throu...

  22. Enhance Problem-Solving Skills with Team Collaboration

    1 Embrace Diversity. To enhance problem-solving through collaboration, actively seek out diverse perspectives. Diversity in a team brings a rich tapestry of experiences and knowledge, which can ...

  23. NPTEL Problem Solving through Programming in C ASSIGNMENT 9 ...

    NPTEL | Problem Solving Through Programming In C | Week 9 : Assignment 9 | Answers with Proof | Jan 2024 Quiz SolutionsJoin Telegram Group of this course, NP...

  24. Hamas Took Her, and Still Has Her Husband

    Hamas Took Her, and Still Has Her Husband. The story of one family at the center of the war in Gaza. March 29, 2024. Share full article. 6. Hosted by Sabrina Tavernise. Produced by Lynsea Garrison ...

  25. Problem Solving Through Programming In C Week 10 Assignment ...

    📌Join this channel to get access to perks:https://www.youtube.com/channel/UCvvEUpqB1AWPB51lW7BhzfQ/joinYour Query:Problem Solving Through Programming In CPr...