Programming with C – Arrays- Lecture5
Rozy Computech Services | Programming with C
by Gagan Deep
3y ago
Array is a linear list of homogeneous elements, stored at successive memory locations in consecutive order. C programming language provides a data structure called the array, that can store a fixed size sequential collection of elements of same data type. An array is used to store a collection of data, but it is often more… The post Programming with C – Arrays- Lecture5 appeared first on rozyph.com ..read more
Visit website
Programming With C : Nested Loops and Jumping Statements- Lecture4
Rozy Computech Services | Programming with C
by Gagan Deep
3y ago
As we discussed in our last chapter Loops, like if-else statements, can be nested, one within another. While, the inner and outer loops need not be generated by the same type of control structure. It is essential,  that one loop be completely embedded within the other  – there can be no overlap. Therefore, Each loop… The post Programming With C : Nested Loops and Jumping Statements- Lecture4 appeared first on rozyph.com ..read more
Visit website
Programming with C – “Control Statements – Loop”- Lecture 3
Rozy Computech Services | Programming with C
by Gagan Deep
3y ago
Suppose we want to display hello on output screen five times in five different lines. We might think of writing either five printf statements or one printf statement consisting of constant “hello\n” five times. What if we want to display hello 500 times? Should we write 500 printf statement or equivalent ? Obviously not. It… The post Programming with C – “Control Statements – Loop”- Lecture 3 appeared first on rozyph.com ..read more
Visit website
Programming with C – Input/Outputs & Decision Making-Lecture 2
Rozy Computech Services | Programming with C
by Gagan Deep
3y ago
Structure of C Program # include < header file>  // # is pre-processor directive  #define x  5  //symbolic constant int a, b;   //global variable declaration int fxn();  // function declaration main() //main function { int i,j,k;     // local variable declaration Input statements; Process; Output Statements; } Example  # include <stdio.h> void main() {  char  name[20];… The post Programming with C – Input/Outputs & Decision Making-Lecture 2 appeared first on rozyph.com ..read more
Visit website
Programming with C – Basics – Lecture 1
Rozy Computech Services | Programming with C
by Gagan Deep
3y ago
Language & Programming Language About C Character Set, Identifiers & Statements Data Types Operators Input Output Functions Basic Programming Examples What is Language Language is a way of Communication Between Two like Hindi, English, Punjabi, Marathi, Tamil etc. If we want to communicate other then our own languages then we can communicate in either of… The post Programming with C – Basics – Lecture 1 appeared first on rozyph.com ..read more
Visit website

Follow Rozy Computech Services | Programming with C on FeedSpot

Continue with Google
Continue with Apple
OR