I just have installed VS Ultimate 2013. When I compiled a simple code, it had an error LNK1104: cannot open file 'kernel32.lib'
I tried to follow instructions on internet but it didn't work.
My code
#include <iostream>
using namespace std;
void main()
{
int x;
cin>>x;
cout<<x;
}