Questions tagged [incompatibility]
302 questions
-3
votes
3 answers
CSS not working with internet explorer
I am making a website for a client, but for some reason internet explorer does not accept the markup. it is supposed to look like this:
which it does on chrome/firefox, but on all versions of Internet Explorer it shows up like this:
You can take a…

Hihaatje
- 263
- 1
- 2
- 8
-4
votes
2 answers
What is difference in int* p and (int*) p in C
I couldn't understand use of (int*) p in following program for pointer to an array
#include
void main()
{
int s[4][2];
int (*p)[2];
int i,j,*pint;
for(i=0;i<=3;i++)
{
p=&s[i];
…

UV0
- 13
- 6