This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void InsertIntoArray() { | |
// input the size of the array from user | |
int size = 0; | |
printf("enter the size of the array : "); | |
scanf("%d", &size); | |
// check is the size is within certain bounds | |
if (size <= 0) { | |
printf("\nINVALID SIZE !!\n"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void InsertIntoArray() { | |
// input the size of the array from user | |
int size = 0; | |
printf("enter the size of the array : "); | |
scanf("%d", &size); | |
// check is the size is within certain bounds | |
if (size <= 0) { | |
printf("\nINVALID SIZE !!\n"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void InsertIntoArray() { | |
// input the size of the array from user | |
int size = 0; | |
printf("enter the size of the array : "); | |
scanf("%d", &size); | |
// check is the size is within certain bounds | |
if (size <= 0) { | |
printf("\nINVALID SIZE !!\n"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void InsertIntoArray() { | |
// input the size of the array from user | |
int size = 0; | |
printf("enter the size of the array : "); | |
scanf("%d", &size); | |
// check is the size is within certain bounds | |
if (size <= 0) { | |
printf("\nINVALID SIZE !!\n"); |