Category: Language
https://www.facebook.com/groups/eee.cse/permalink/1650363141659373/ https://trello.com/b/0bKxmpuK/cse-graduate-checklist
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”);…
Auto Example: #include<stdio.h> void main() { Display(); Display(); Display(); } void Display(){ auto int x=1; x=x+5; printf(“%d\n”,x);…
It will clear the confusion about the pointer when arises. Sum clear: example code: #include<stdio.h> int main()…
laravel installation: composer create-project –prefer-dist laravel/laravel yourproject name 5.4.19 example for me: composer create-project –prefer-dist laravel/laravel cms…
Basic Simple Project By Me: <?php class Employee { var $first; var $last; var $stat; var $uid;…
Recent Comments