check version of browser - by jammkie same How can i find what version of browser a user is using and ask him to upgrade it Read the article
finding files inside nested folder - by jammkie same How to serach for file inside nested folders? Read the article
pronunciation of SQL SERVER - by jammkie same how to pronunce ms sql sever (is it sql server or sequel server). Read the article
Content inside zip file - by jammkie same how to use zippackage class to know about the content in .zip file? for ex to know the type of file inside this zip file. Read the article
Pointers in c/c++ - by jammkie same include void main() { int p[]={0,1,2,3,4}; int *a[]={p,p+1,p+2,p+3,p+4}; printf("%u %u %u %u",a,a,(*a)); } What should be the output of the above code? And if we make array p as static(static int p[]), output gets changed .Why? Read the article