Skip to main content

Running c and c++ code on windows

Steps:
1.visit google
2. search code blocks
3. select downloads
4.select download the binary release
5.Select OS windows
6.Select codeblocks-mingw-setup.exe
7.click on source forge.net for download
8.after download open setup file.
9.click
   next
   I agree
   next,
   next or change path,
   no(bcz we don't want to run right now)
   next,
   finish
10.go to downloaded path
     C:\Program Files (x86)\CodeBlocks\MinGW\bin
     copy this path in which all c and cpp files are there.
11.Right click on my computer
     Properties
     advanace system settings
     select environment variable
     select path
     click on edit button
     leave content as it is type semicolon and paste copied path.
     i.e.
     C:\Program Files (x86)\CodeBlocks\MinGW\bin
12.click ok three times.


13.Open command prompt
   A. For C :
    
type start notepad hello.cpp


  1. #include<stdio.h>
  2. void main()
  3. {
  4. printf("hello world");
  5. }
    Compile and run:
  •      gcc -o test hello.cpp
  •      test
output:
hello world
 
 

B. For CPP :
    
type start notepad hello.cpp


  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. cout<<"hello world";
  6. return 0;
  7. }
    Compile and run:
  • g++ -o test hello.cpp
  •      test
output:
hello world















Comments

Popular posts from this blog

Naming Convention

  Naming Convention : A naming convention is  a convention for naming things: Please find below the table for naming conventions: Naming Convention Format Example Camel Case camelCase 🐪aBcD Kebab Case kebab-case 🍢a-b-c-d Snake Case snake_case 🐍a_b_c_d Pascal Case PascalCase 🧑‍🦳AbCd Flat Case flatcase 📏abcd Upper Flat Case UPPERFLATCASE ABCD Screaming Snake Case SCREAMING_SNAKE_CASE 🐍A_B_C_D Camel Snake Case camel_Snake_Case 🐪🐍ab_Cd Pascal Snake Case Pascal_Snake_Case Ab_Cd Train Case Train-Case 🚃Ab-Cd Cobol Case COBOL-CASE 🍢AB-CD

Fibonacci series

  Fibonacci series Code: import java.util.Scanner; class Main{     public static void main(String anyVar[]){         Scanner sc=new Scanner(System.in);         System.out.println("Enter any number till that yu want Fibonacci series:");         int num=sc.nextInt();         System.out.println("Fibonacci series till "+num+"is as follows:");         int num1=1,num2=1,num3=0;         for(int i=0;i<num;i++){            if(i==0||i==1)             System.out.print(1);             else{                 //Fibonacci number is sum of previous two Fibonacci number                 num3=num1+num2;                 num1=num2;           ...

NVL

 NVL: The NVL function allows you to replace null values with a default value.  Simple explanation: if( first parameter's value==null ) then return second parameter value if( first parameter's value!=null) then return first parameter as is Example: nvl("xyz","")---->return xyz nvl(null,'xyz') ------------>return xyz