taho
taho

Reputation: 1

whenever i'm trying to compile code, its showing me error of *int

prog.c: In function ‘main’:

prog.c:35:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘void *’ [-Wformat=] printf("\n %c \t %d \t identifier\n",c,p); ^

prog.c:47:24: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘void *’ [-Wformat=] printf("\n %c \t %d \t operator\n",ch,p); ^ '''

#include<stdio.h>
#include<ctype.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
void main()
{
    int i=0,j=0,x=0,n;
    void *add[5],*p;
    char ch,srch,b[15],d[15],c;
    printf("Expression terminated by $:");
    while((c=getchar())!='$')
    {
        b[i]=c;
        i++;
    }
    n=i-1;
    printf("Given Expression:");
    i=0;
    while(i<=n)
    {
        printf("%c",b[i]);
        i++;
    }
    printf("\n Symbol Table\n");
    printf("Symbol \t addr \t type");
    while(j<=n)
    {
        c=b[j];
        if(isalpha(toascii(c)))
        {
            p=malloc(c);
            add[x]=p;
            d[x]=c;
            printf("\n %c \t %d \t identifier\n",c,p);
            x++;
            j++;
        }
        else
        {
            ch=c;
            if(ch=='+'||ch=='-'||ch=='*'||ch=='=')
            {
                p=malloc(ch);
                add[x]=p;
                d[x]=ch;
                printf("\n %c \t %d \t operator\n",ch,p);
                x++;
                j++;
            }
        }
    }
}

'''

Upvotes: 0

Views: 341

Answers (1)

zhj
zhj

Reputation: 498

you should use %p in printf just like printf("%p",p);

Upvotes: 2

Related Questions