Answers for "how to find the elements in array c coding"

C
0

how to find the elements in array c coding

#include <stdio.h>
int main(){
	int mark[] = {12,34,56,23,21};
//	 printf("%d",mark[0]);
	int size= sizeof mark/ sizeof mark[4];
	printf("%d",size);
	return 0; 
}
Posted by: Guest on September-08-2021

Code answers related to "how to find the elements in array c coding"

Code answers related to "C"

Browse Popular Code Answers by Language