Answers for "#include<stdio.h> main() { int *p = 15; printf("%d",*p); }"

C
0

#include <stdio.h> int main() { int x=(20||40)&&(10); printf("%d",x); return 0; }

#include <stdio.h> 
int main()
{ 
  int x=(20||40)&&(10); 
  printf("%d",x); 
  return 0; 
}
Posted by: Guest on November-18-2020
0

#include<stdio.h> main() { int *p = 15; printf("%d",*p); }

main ()
{        int [4] = {4,8,1,7,9};
         int *p;
         p = k;
         printf("%d \n", k[1]);
         printf("%d \n",*p);
         printf("%d \n",*(k+3));
         printf("%d \n",*(p+1)+k[3]);
         getch();
}
Posted by: Guest on October-13-2021

Code answers related to "#include<stdio.h> main() { int *p = 15; printf("%d",*p); }"

Code answers related to "C"

Browse Popular Code Answers by Language