c-以十进制打印变量的地址

我正在尝试以十进制而不是六进制打印数组元素的地址,但是它不起作用.下面是代码和输出示例.

#include <iostream>
#include <iomanip>
using namespace std;

void printarrandptr(int arr[], int size);
const int LEN = 5;

void main(){

    int arr[LEN] = { 15, 3, 14, 11, 14 };

    int *p[LEN];

    printarrandptr((int*)arr, LEN);
}

void printarrandptr(int arr[], int size){
    int i;

    for (i = 0; i < size; i++)
        cout << setw(9) << &arr[i] << setw(4) << arr[i] << endl;
    cout << endl;
}

输出示例:

 0098FDC8  15
 0098FDCC   3
 0098FDD0  14
 0098FDD4  11
 0098FDD8  14

解决方法:

ostream& amp;默认情况下使用十六进制格式的operqator<(ostream&amp ;, void *). cout<< setw(9)<< (long long)& arr [i] ...应该可以解决问题. 请不要讨论C型转换.

上一篇:[mybatis] sql语句无错误,但是执行多条sql语句时,抛出java.sql.SQLSyntaxErrorException


下一篇:MySQL是否可以使用LIMIT语法进行子查询?如果没有,为什么?