Learn Program
Learn Program
  • 97
  • 17 138
Servlet Tutorial || Login || JSP || JDBC || MySQL || Get Method
Demonstration about Working with Java Servlet and JDBC with JSP
Переглядів: 119

Відео

1-d Array Declaration and Initialization
Переглядів 472 роки тому
#LearnProgramming This lecture covers the following points related to one-dimensional array: 1) Declaration and initialization 2) Input and output with a 1-d array 3) Addressing of items of the array Prerequisite lectures: 1) Data Types: ua-cam.com/video/piQ6Tob6hGc/v-deo.html 2) Input Output: ua-cam.com/video/_Y0BBv-O8us/v-deo.html 3) For loop: ua-cam.com/video/fDJzT4uFUHI/v-deo.html
Accessing 1-d Array with a Pointer
Переглядів 352 роки тому
This lecture covers the following points related to pointer with 1-d array: 1) Taking input array items with a pointer 2) Display array items with a pointer 3) Compare address of array items 4) Print array items in reverse order using a pointer Required pre-requisite lectures: 1) Formatted Output with print(): ua-cam.com/video/14B3DclNzIw/v-deo.html 2) Introduction to pointer: ua-cam.com/video/...
Pointer Arithmetics with 1-d Array
Переглядів 282 роки тому
This lecture covers the following points related to pointer arithmetic operations: 1) Arithmetic Addition between pointer and an integer variable 2) Arithmetic Subtraction between pointer and an integer variable 3) Increment operator with a pointer variable 4) Decrement operator with a pointer variable 5) Subtraction between two pointer variable This lecture also gives you ideas on how to compa...
Types of Constants and Varibales
Переглядів 312 роки тому
This lecture covers the following points related to C programming: 1) What is constant and how does C programming declare a constant? 2) The const keyword 3) Integer literals or constants 4) Real-valued constants as fractional and exponential form 5) Mantissa and exponent part of floating-point constants 6) Rules for creating identifier names Prerequisite lecture: Data Types with Modifiers: ua-...
Introduction to pointer
Переглядів 482 роки тому
This lecture covers the following points: 1) Why pointers are necessary 2) Declaration and initialization of pointer 3) Pointer Operators 4) Size of a pointer variable 5) Different pointer assignment 6) Various pointer notations Prerequisite lectures: 1. Basic structure of C programming: ua-cam.com/video/ZR1rrOC1Rpw/v-deo.html 2. Data types and modifiers: ua-cam.com/video/piQ6Tob6hGc/v-deo.html...
Check a number Prime or Not
Переглядів 193 роки тому
Numbers have two factors as 1 and the number itself is known as prime numbers. To understand the complete process we need some previous topics to need to study. These are as follows: 1) Working with arithmetic operators: ua-cam.com/video/xh6RLVZsGDU/v-deo.html 2) Working with if-else statement: ua-cam.com/video/-2JMSp8HURM/v-deo.html 3) Working with while loop: ua-cam.com/video/Zt1CwztAkYs/v-de...
Design a Simple Calculator using switch case
Переглядів 923 роки тому
#learnProgramming A simple calculator is designed using a switch case, function, and do while loop. Following prerequisites are required to understand the code: 1. Data Types with Modifiers: ua-cam.com/video/piQ6Tob6hGc/v-deo.html 2. Working with switch-case: ua-cam.com/video/bvjzx56beRM/v-deo.html 3. Working of do-while loop: ua-cam.com/video/W7KxXB4i6u8/v-deo.html 3. Working with user defined...
User Defined Function [Part -2]
Переглядів 493 роки тому
#learnProgramming This lecture covers the following points related to user-defined functions in the C programming language: 1) Types of user-defined functions 2) Types of arguments 3) Function call by value 4) Scope of function variables and parameters Prerequisites to this lecture: 1) Introduction to user-defined function: ua-cam.com/video/ac0dSDu7zPs/v-deo.html 2) Basic structure of a C progr...
User Defined Function [Part-1]
Переглядів 1123 роки тому
#learnProgramming In this lecture, I have explained the need for user-defined functions for large project development. This particular lecture covers the following points: 1) Need of Function 2) How to design a modular program using C language? 3) How to work with user-defined functions in C programming? 4) Working flow of user-defined function 5) Implicit declaration of function by C compiler ...
Data Types with Modifiers in C Programming
Переглядів 1483 роки тому
The data type defines which operations can safely be performed to create, transform and use the variable in another computation. When a programming language requires a variable to only be used in ways that respect its data type, that language is said to be strongly typed. C program to check the range of integer values: onlinegdb.com/eDfPFN-Va C program to check the range of floating-point types...
Switch Case Statement
Переглядів 443 роки тому
Switch case statements are a substitute for long if statements that compare a variable to several integral values. The switch statement is a multiway branch statement. It provides an easy way to dispatch execution to different parts of code based on the value of the expression. Switch is a control statement that allows a value to change control of execution. The details of the conditional state...
Enumeration Data Type in C Programming
Переглядів 853 роки тому
Enumeration (or enum) is a user-defined data type in C. It is mainly used to assign names to integral constants, the names make a program easy to read and maintain. C programming also supports other three other user-defined data types: 1) structure 2) union and 3) typedef. The complete lecture on C programming is available at this link: ua-cam.com/play/PLyuILv7hH85Sye221dey5wDqDFIh6OVBq.html
Jump statment using goto
Переглядів 203 роки тому
Jump Statement makes the control jump to another section of the program unconditionally when encountered. The goto statement is a jump statement which is sometimes also referred to as an unconditional jump statement. The goto statement can be used to jump from anywhere to anywhere within a function. Details for iterative statements can be accessed from these links: 1. Conditional Statement usin...
if-else Statement in C Programming
Переглядів 873 роки тому
In this lecture I have discussed how to work with conditional statements using if-else statements in C programming. Using an if-else statement we can control the flow of execution of a code. We can control what to execute based on a given condition. If-else statements come in four different variations as: 1) if statement 2) if-else statement 3) if-else ladder 4) if-else nesting The working mech...
Practicing MCQs with Operators in C Programming
Переглядів 783 роки тому
Practicing MCQs with Operators in C Programming
Practicing MCQs with for, while and do-while loop
Переглядів 2493 роки тому
Practicing MCQs with for, while and do-while loop
Problem Solving with If-else, switch case and goto statement
Переглядів 503 роки тому
Problem Solving with If-else, switch case and goto statement
Working with do while loop
Переглядів 293 роки тому
Working with do while loop
Working with while loop
Переглядів 233 роки тому
Working with while loop
Writting, Compile and Debug C Program with GDB Compiler
Переглядів 1043 роки тому
Writting, Compile and Debug C Program with GDB Compiler
Understanding for loop in C Programming
Переглядів 403 роки тому
Understanding for loop in C Programming
Solving MCQs With Function
Переглядів 2983 роки тому
Solving MCQs With Function
Format Output with printf()
Переглядів 2783 роки тому
Format Output with printf()
Bitwise Shift Operators
Переглядів 193 роки тому
Bitwise Shift Operators
Arithmetic Operators Precedence and Associativity [PART-1]
Переглядів 253 роки тому
Arithmetic Operators Precedence and Associativity [PART-1]
Introduction to Arithmetic Operators [PART 1]
Переглядів 243 роки тому
Introduction to Arithmetic Operators [PART 1]
Use of Bitwise Operators [Part - 1]
Переглядів 213 роки тому
Use of Bitwise Operators [Part - 1]
Type Casting Operator
Переглядів 273 роки тому
Type Casting Operator
Type Conversion (Implicit Type Casting) PART-2
Переглядів 233 роки тому
Type Conversion (Implicit Type Casting) PART-2

КОМЕНТАРІ

  • @Tan_cannon
    @Tan_cannon Рік тому

    L 🤣(from death note is here)

  • @Linkle_X
    @Linkle_X Рік тому

    Thank you so much🫶🏻🫶🏻

  • @Принуждениекмиру-ь2ц

    Wasted a lot of time watching this video in order to find something new. But nothing. Everything are from books. No need to make a long video. Do some other productive work.

  • @Принуждениекмиру-ь2ц

    Teacher, you don't even understand how to use %d with integer

  • @tokkissi
    @tokkissi 2 роки тому

    thank you!

  • @VijayKumar-so3ow
    @VijayKumar-so3ow 3 роки тому

    sir please upload videos of functions unit 3

    • @learnprogam
      @learnprogam 3 роки тому

      Introduction to function in C programming in added to the playlist ua-cam.com/video/ac0dSDu7zPs/v-deo.html

  • @Let_Me_Handle_It
    @Let_Me_Handle_It 3 роки тому

    Nice

  • @helenhardy4005
    @helenhardy4005 3 роки тому

    vaw.fyi lovely

  • @amitgupta2890
    @amitgupta2890 3 роки тому

    Good and effective.

  • @mr.prashant9139
    @mr.prashant9139 4 роки тому

    U started it from the beginning 🙏 thankyou sir it'll help us a lot♥️

  • @avulabhanuprasad4886
    @avulabhanuprasad4886 4 роки тому

    Thanking you! Sir.

    • @learnprogam
      @learnprogam 3 роки тому

      Most welcome!. See new videos are added to the palylist.

  • @rkrbih
    @rkrbih 4 роки тому

    Nyc 💙 experience

  • @CodeDecipher
    @CodeDecipher 4 роки тому

    Nice Bro, great content.. keep it up. What do you think about collaboration. My personal choice is also C++

    • @learnprogam
      @learnprogam 4 роки тому

      Will do. Let me build other contents. My materials will target the graduate students and students looking for placements.

    • @CodeDecipher
      @CodeDecipher 4 роки тому

      @@learnprogam well, I am currently intermediate student, aspiring to opt CSE.. Currently I'm targeting 11th & 12th students

    • @learnprogam
      @learnprogam 4 роки тому

      @@CodeDecipher Good. Keep it up. It will also help you to learn C++ in detail.

  • @sujanboddeda7896
    @sujanboddeda7896 4 роки тому

    Gotham Sir output was not coming

    • @learnprogam
      @learnprogam 4 роки тому

      Can you please share a screenshot of the program?

    • @sujanboddeda7896
      @sujanboddeda7896 4 роки тому

      @@learnprogam sir how to share in this channel. If u want to keep the screen shot I will share through lpu live

    • @learnprogam
      @learnprogam 4 роки тому

      @@sujanboddeda7896 OKAY

  • @Павелик-з4е
    @Павелик-з4е 4 роки тому

    The emulator of all consoles, along with games in one android application ua-cam.com/video/e0LcWM-W22g/v-deo.html

  • @vinodsingh2727
    @vinodsingh2727 4 роки тому

    Keep the link inside the description sir...