Following is first program in C #include <stdio.h> int main(void) { printf(“Hello World”); return 0; } Let us analyze the program line by line. Line 1: [ #include <stdio.h> ] In…
Tag: C programming
Structure of C program
C is a procedural programming language. It was initially developed by Dennis Ritchie in the year 1972. It was mainly developed as a system programming language to write an operating…
Introduction To Pointers
What are Pointers? A pointer is a variable whose value is the address of another variable, i.e., direct address of the memory location. Like any variable or constant, you must declare a…