Embed presentation
Download to read offline

![C
{Syntax}
[Array]](https://image.slidesharecdn.com/presentation1-151116200219-lva1-app6892/85/Array-and-Syntax-in-C-programming-2-320.jpg)


![int main()
{
int a1=10;
int a2=20;
int a3=30;
int a4=40;
}
int main()
{
int a[4]= {10,20,30,40};
}
Without Array With Array](https://image.slidesharecdn.com/presentation1-151116200219-lva1-app6892/85/Array-and-Syntax-in-C-programming-5-320.jpg)




This document discusses the history and evolution of the C programming language from its inception in 1972 to modern versions. It also demonstrates using arrays in C code to initialize multiple integer variables at once compared to listing them individually. Finally, it shows a simple C program with the correct syntax including a header file, main function, and semicolons after statements.

![C
{Syntax}
[Array]](https://image.slidesharecdn.com/presentation1-151116200219-lva1-app6892/85/Array-and-Syntax-in-C-programming-2-320.jpg)


![int main()
{
int a1=10;
int a2=20;
int a3=30;
int a4=40;
}
int main()
{
int a[4]= {10,20,30,40};
}
Without Array With Array](https://image.slidesharecdn.com/presentation1-151116200219-lva1-app6892/85/Array-and-Syntax-in-C-programming-5-320.jpg)



