Search This Blog

Tuesday, March 19, 2019

HACK PUBG MOBILE TERBARU v0.9.5+7 [ Easy Install ] No ROOT+BANNED Maret 2019

HACK PUBG MOBILE v0.9.5+7 [ Easy Install ] No ROOT+BANNED Maret 2019
Penasarannya bagaimana cara hack/cheat game PUBG Mobile di Android tanpa root? Simak langkah mudahnya berikut ini.

1. Uninstall PUBG mobile yang sudah terinstall di Android kamu terlebih dahulu.
2. Download instalan Apk PUBG mobile dan file OBB yang sudah di modifikasi ini.
Fitur modifikasipada PUBG mobile:
  • AIM Assist
  • Trigger Hack
3. Install Apk PUBG mobile, setelah terinstall jangan dibuka terlebih dahulu, karena tidak akan bisa apabila tidak menaruh file OBB nya.
4. Selanjutnya extract file zip OBB menggunakan file manager atau aplikasi zip extractor, di dalamnya terdapat folder “com.tencent.ig“dan file OBB “main.3212.com.tencent.ig.obb“,
5. Langkah terakhir, cut/copy folder “” berserta isinya ke dalam folder /Android/OBB/menggunakan aplikasi file manager bawaan di Android kamu.
4. Mainkan game nya

CHEAT TERBARU MOBILE LEGEND {UNLIMITED DIAMONDS} ALL SKIN MAP HACKS INDONESIA UPDATE MARET 2019


MOBILE LEGENDS merupakan game yang sangat populer disegala usia, dari bocah sampai yang sudah bekerja pun suka memainkan game moba ini. Dengan adanya banyak pilihan Hero dan skin yang menarik membuat pemain tidak segan untuk mengeluarkan uang membeli hero baru dan skin baru, bahkan banyak anak kecil yang masih sekolah merengek dan meminta-minta dibelikan pulsa untuk membeli skin hero favorit mereka, nah sekarang sudah tidak perlu lagi karena sudah ada CHEAT MOBILE LEGEND UNLIMITED DIAMOND + SKINS + MAP HACK

Yang Mau Cheat nya
klik langsung di link dibawah ini

Cheat 1
Cheat 2

TRIK TERBARU MAIN PUBG DENGAN EMULATOR NO BANNED+AUTO CHICKEN DINNER UPDATE MARET 2019

Trick Cheat Pubg on Phoenix OS Fix Bypass emulator "detected" & Fix No "Banned" 2019

https://trickpubg.blogspot.com/2019/01/trick-cheat-pubg-on-phoenix-os-fix.html

New Mod Bypass Emulator Detected+NO BANNED !!!

in this way we can always have chicken dinner in every game !!!
Download Emulator Phoenix OS Fix Banned, Link Bellow !!!

New Features:
  • Bypass emulator "Detected"
  • Fix No "Banned" 
  • Performed system for "Game Expirence"
  • Fix Get "60 FPS" HD Setting On Low End PC 
  • Bug Fix and "Increase Performance"
  • Bug Fix for "All CPU"
OLD Features:
  • Moded with 3.0.7 - 2.6.4 and 2.5.3 systems.
  • Reoptimized all system apps
  • Updated Apex Launcher (Removed Microsoft Launcher)
  • Updated Octopus v3.0.0
  • Updated Fonts and Emoji style
  • Updated Gapps 14.7.99
  • Changed speed/game booster apps.
  • Added ROC Live Wallpaper
  • NTFS disk performance is improved. Now the system is faster and more stable. 
  • Added FX filesystem. (Can be access all disk parts)
  • Added Soft reboot function.(Fast Reboot)
  • Added DPI and resolution changer.(Support 4k-FullHD display)
  • Added Game launcher. (Can be increase game performance
Required Tools:
    Download Emulator Phoenix OS Fix Banned, Link Bellow !!!
    Part 1   Part 2   Part 3   Part 4   Part 5   Part 6   Part 7

      Single Link 1
    Single Link 2
    "install pubg on phoenix os, phoenix os pubg download, phoenix os pubg mobile download, phoenix, os pubg key mapping, phoenix os pubg lag, phoenix os pubg emulator detected, phoenix os pubg, mobile black screen, phoenix os roc pubg, pubg mobile lag fix android, pubg mobile lag fix ios, why does pubg mobile keep lagging, pubg lag fix android, pubg mobile lag fix 2gb ram, how to reduce lag, in pubg mobile, pubg mobile lag iphone 6, pubg mobile ultra graphics settings, pubg cheats mobile, pubg.cheat campus.com login, pubg cheats free, pubg cheats download, pubg cheats android,, pubg.cheat campus.com money, pubg mobile hack, cheat pubg mobile terbaruhow to increase fps in, pubg mobile emulator, pubg mobile fps boost, pubg mobile lag fix android, how to check fps in pubg mobile, pubg mobile 60fps, pubg mobile fps drop fix, how to increase fps in pubg emulator, pubg mobile emulator 60fps"

      PUBG Mobile Hack Cheats Unlimited UC +99999 No Banned Update Maret 2019

      HELOO to our site,Today we just create and release new Pubg Mobile Hack which will give you Unlimited ladybug and BP Pubg Mobile hack. You don’t need to download it becouse we have a this online version, so all you have to do is click Online Hack button and your Pubg Mobile Hack is ready to use! Pubg Mobile Cheats are 100% safe. We made sure that cheats for Pubg Mobile work great on all Android and iOS devices. Also, it’s important to mention that you don’t need to root your Android device or jailbreak your iOS device. Pubg Mobile Hack has been tested on hundreds of Android and iOS devices and it worked perfect every single time! Another thing that makes our Pubg Mobile Hack the best is that it’s really easy to use – you can get resource. Also, you can use our hack for unlimited amount of times! If you don’t know how to use it, you will be able to read detailed instructions later on in this post! Have fun!

      PUBG Mobile Features
      -Unlimited UC
      -Anti-Ban
      -Updated
      WORKING AS OF

      OR Download MOD File (Wallhack, Aimbot)

      How to use PUBG Mobile Hack

      Use our Online Trainer or Download File

      Run it or Unzip download file

      Enjoy PUBG Mobile

      Thursday, March 7, 2019

      Use of logical operators in c language

      DKDE || blogpemula2019.blogspot.com || okysetyakelana.blogspot.com
      in this article, I share with you little code of C programming that how logical operators work.

      this is an example of Marksheet where I use logical operators.


      Use of logical operators in c language

      #include<conio.h>
      #include<stdio.h>
      main()
      {
            //Use of logical operator &&
         
         
            int obt_matric,obt_inter,max_matric,max_inter;
            float per_matric,per_inter;
         
            printf("Enter matriculation obtained:");scanf("%d",&obt_matric);
            printf("Enter matriculation maximum:");scanf("%d",&max_matric);
            printf("Enter intermediate obtained:");scanf("%d",&obt_inter);
            printf("Enter intermediate maximum:"); scanf("%d",&max_inter);
         
            per_matric = obt_matric*100/max_matric;
            per_inter = obt_inter*100/max_inter;
         
            if(per_matric>=80 && per_inter>=80)
            printf("Congratulation! you got double top A-1 Grade in matric And Inter");
            else
            printf("You fail to got double top"); 
         
         
            getch();} 




      Simple Grading System in C programming Without Loop

      DKDE || blogpemula2019.blogspot.com || okysetyakelana.blogspot.com
      The grading system is essential for students because everyone student wants that who get A grade A+ Grade in an institution or College and University.

      Basically today I tell you a simple program which written on C language for the Grading system nested condition flow.

      Simple Grading System in C programming Without Loop


      there are so many ways to make a grading system but I'm sharing with you a very basic and very simple method Code.

      so let's start.

      #include<conio.h>
      #include<stdio.h>
      main()
      {
            //Grading system - Nested conditional flow
         
         
            int obt,max;
            float per;
            printf("Grading System");
            printf("\n***************\n\n");
         
         
            printf("Enter obtained marks:"); scanf("%d",&obt);
            printf("Enter max marks:"); scanf("%d",&max);
            per = obt * 100 / max;
         
            if(per>=80)
            printf("Congrats! you got A-1 Grade");
            else if(per>=70)
            printf("Good, you got A Grade");
            else if(per>=60)
            printf("You secure B-Grade");
            else
            printf("You are fail :-( you need to work hard more");   
         
            getch();}

      I hope you understood the above code.

      Tuesday, March 5, 2019

      Basic C Language Tutorial for beginners

      I'm telling you about Some Basic Programming Languages in Computer Science Feild. So, guys, there are many Basic Programming Languages to begin to start your career in Web development.

      Today I teach you C Language. according to www.tiobe.com C Language is the second number of Top Programming Languages in the Wolrd.

      There are some basic programming languages.


      • Fortran
      • COBOL
      • Pascal programming language
      • C++
      • Java
      • Visual Basic
      You may also learn basic from the above-mentioned Languages.



      Why I  Use C Langauge Programming for Basic?

      This is true and no doubt that is the second top in the list and this is so simple and easier than other languages by my opinion. this is also can easily work on a simple note pad.

      How it is Work.

      it's work simply and also need an interpreter like (Dev C ++ ) because you should practice on the compiler. So you can improve your programming via practice.

      so let us Start Programming.

      1. Simple Program. Hello World 


      #include<conio.h>
      #include<stdio.h>
      main()
      {
            printf("Hello World");
            
            getch();}

      this is Simple Program where we print hello world.

      2. Size of Function 


      #include<conio.h>
      #include<stdio.h>
      main()
      {
         
            printf("Integer occupies %d bytes",sizeof(int));
            printf("\n");
            printf("float occupies %d bytes",sizeof(float));
            printf("\n");
            printf("char occupies %d bytes",sizeof(char));
         
         
            getch();}

      3. Arithmetic Operator 

      How Arithmetic Operators Work in below Code.


      #include<conio.h>
      #include<stdio.h>
      main()
      {
            //implementation of arithmatic operators
            
            int x,y;
            
            printf("Enter first value:");scanf("%d",&x);
            printf("Enter second value:");scanf("%d",&y);
            
            printf("\n\n");
            printf("\nSum = %d",x+y);
            printf("\nDiff = %d",x-y);
            printf("\nProduct = %d",x*y);
            printf("\nDivision = %d",x/y);
            
            
            getch();}

      4. Format Specifier in print function

      #include<conio.h>
      #include<stdio.h>
      main()
      {
            //use of %d - Format Specifier in printf function
         
            int x,y;
         
            printf("Enter first value:");scanf("%d",&x);
            printf("Enter second value:");scanf("%d",&y);
         
            printf("\n\n");
            printf("\n %d + %d = %d",x,y,x+y);
            printf("\n %d - %d = %d",x,y,x-y);
            printf("\n %d * %d = %d",x,y,x*y);
            printf("\n %d / %d = %d",x,y,x/y);
         
         
            getch();} 

      5. Odd-Even identification, use of modulus % operator with an if-else structure 


      #include<conio.h>
      #include<stdio.h>
      main()
      {
            //Odd - Even identification, use of modulus % operator with if-else structure
         
            int num;
         
            printf("Enter Number:");scanf("%d",&num);
         
            if(num%2 == 0)
            printf("%d is even number",num);
            else
            printf("%d is odd number",num);

         
         
            getch();}