/* Program to print out the memory locations */ main( ) { int num[ ] = { 24, 34, 12, 44, 56, 17 } ; int i ;
for ( i = 0 ; i <= 5 ; i++ ) { printf ( "\nelement no. %d ", i ) ; printf ( "address = %u", &num[i] ) ; } }
|
| Author: lenin 10 Jun 2008 | Member Level: Diamond Points : 2 |
hi giri are you a computer student , i know only small programs in C.But i know C is a SEA.Am i right ? I remember the days when i used to mugup the codings for Lab exams.still c fear is there. Also still C is in flying colours
|
| Author: lenin 10 Jun 2008 | Member Level: Diamond Points : 2 |
hi giri are you a computer student , i know only small programs in C.But i know C is a SEA.Am i right ? I remember the days when i used to mugup the codings for Lab exams.still c fear is there. Also still C is in flying colours
|