Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

quiz arrary and pointers in c++

 #include <iostream>
   using namespace std;
   int main()
   {
       int a[2][4] = {3, 6, 9, 12, 15, 18, 21, 24};
       cout << *(a[1] + 2) << *(*(a + 1) + 2) << 2[1[a]];
       return 0;
Source by www.sanfoundry.com #
 
PREVIOUS NEXT
Tagged: #quiz #arrary #pointers
ADD COMMENT
Topic
Name
7+3 =