Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,851 questions

51,772 answers

573 users

What is difference between array and &array (int array[]) in C

1 Answer

0 votes
#include <stdio.h>
 
int main(int argc, char **argv) 
{
	int array[3] = {23, 87, 99}; 
  
	printf("array = %p ::: &array = %p\n", array, &array); 
	printf("array + 1 = %p ::: &array + 1 = %p\n", array + 1, &array + 1); 
	
	return 0; 
}
    
      
/*
run:
    
array = 000000000062FE40 ::: &array = 000000000062FE40
array + 1 = 000000000062FE44 ::: &array + 1 = 000000000062FE4C
 
*/

 



answered Feb 27, 2019 by avibootz
edited Feb 27, 2019 by avibootz

Related questions

1 answer 87 views
1 answer 257 views
1 answer 185 views
1 answer 95 views
1 answer 108 views
...