- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Short hand array notation in C/C++
If there are repeated values are present in C then we use shorthand array notation to define that array.
Here is an example:
Example Code
#include <stdio.h> int main() { int array[10] = {[0 ... 3]7, [4 ... 5]6,[6 ... 9]2}; for (int i = 0; i < 10; i++) printf("%d ", array[i]); return 0; }
Output
7 7 7 7 6 6 2 2 2 2
In this program,
int array[10] = {[0 ... 3]7, [4 ... 5]6,[6 ... 9]2}
is similar as,
int array[10] = {7, 7, 7, 7, 6, 6, 2, 2, 2, 2}.
If there is any gap in the middle of the array it will be filled up by 0.
In C++ above program will give the same output but it will give warnings with the output.
Advertisements