Month: April 2017

29
Apr
2017

File Handling in C

Fgets Code: #include<stdio.h> int main() { FILE *fp; fp=fopen(“a.txt”,”r”); //apend mode if(fp==NULL) { printf(“unable to open file\n”);…

28
Apr
2017

Storage Class Specifier: IN C

Auto Example: #include<stdio.h> void main() { Display(); Display(); Display(); } void Display(){ auto int x=1; x=x+5; printf(“%d\n”,x);…

28
Apr
2017

Pointer Good Basic

It will clear the confusion about the pointer when arises. Sum clear: example code: #include<stdio.h> int main()…

23
Apr
2017

Laravel Practice: Fundamentals

Till now  we have covered : Laravel fundamentals that consists of Routes: Controller: View: Little bit of…

23
Apr
2017

Mission Laravel: PHP Artisan Command

TO get all registered list: php artisan route:list Create Controller: php artisan make:controller PostsController Controller with resource:…

23
Apr
2017

Mission Laravel: Install Directory

VHOST Directory: C:\laragons\bin\apache\httpd-2.4.25-win32-VC14\conf\extra\httpd-vhosts.conf My Windows Directory: C:\Windows\System32\drivers\etc\hosts