Write a Program to draw TV in C

Write a Program to draw TV in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*TV*/ #include<stdio.h> #include<conio.h> #include<graphics.h> int main() {    int gm,gd=DETECT;    initgraph(...
Read More
Write a Program to draw Railway in C

Write a Program to draw Railway in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*Railway*/ #include<stdio.h> #include<conio.h> #include<graphics.h> int main() {    int gm,gd=DETECT;    clrscr(...
Read More
Write a Program to draw Home in C

Write a Program to draw Home in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*Home*/ #include<stdio.h> #include<conio.h> #include<graphics.h> int main() {    int gm,gd=DETECT;    initgraph...
Read More
Write a Program to draw Face in C

Write a Program to draw Face in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*Face*/ #include<stdio.h> #include<conio.h> #include<graphics.h> int main() {    int gm,gd=DETECT;    initgrap...
Read More
Write a Program to draw Cartoon in C

Write a Program to draw Cartoon in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*Cartoon*/ #include<stdio.h> #include<conio.h> #include<graphics.h> int main() {    int gm,gd=DETECT;    initgr...
Read More
Write a Program to draw Arrow in C

Write a Program to draw Arrow in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*Arrow*/ #include<stdio.h> #include<conio.h> #include<graphics.h> int main() {    int gm,gd=DETECT;    initgrap...
Read More
Write a Program to draw Rectangle in C

Write a Program to draw Rectangle in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*Rectangle*/ #include<stdio.h> #include<conio.h> #include<graphics.h> int main() {    int gm,gd=DETECT;    init...
Read More
Write a Program to draw Putpixel in C

Write a Program to draw Putpixel in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*Putpixel*/ #include<stdio.h> #include<conio.h> #include<graphics.h> int main() {    int gm,gd=DETECT;    initg...
Read More
Write a Program to draw Line in C

Write a Program to draw Line in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*Line*/ #include<stdio.h> #include<conio.h> #include<graphics.h> int main() {    int gm,gd=DETECT;    initgraph...
Read More
Write a Program to draw Ellipse in C

Write a Program to draw Ellipse in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*Ellipse*/ #include<stdio.h> #include<conio.h> #include<graphics.h> int main() {    int gm,gd=DETECT;    initgr...
Read More
Write a Program to draw circle in C

Write a Program to draw circle in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*Circle*/ #include<stdio.h> #include<conio.h> #include<graphics.h> int main() {    int gm,gd=DETECT;    initgra...
Read More
Write a Program for FloodFill Algorithm in C

Write a Program for FloodFill Algorithm in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*FloodFill Algorithm */ #include<stdio.h> #include<graphics.h> #include<dos.h> void floodFill(int x,int y,int oldco...
Read More
Write a Program for Boundary Fill Algorithm in C

Write a Program for Boundary Fill Algorithm in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/* Boundary Fill Algorithm */ #include<stdio.h> #include<conio.h> #include<graphics.h> void boundaryFill4(int x, int...
Read More
Write a Program for MidPoint Circle Algorithm in C

Write a Program for MidPoint Circle Algorithm in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*     MidPoint Circle Algorithm */ #include<stdio.h> #include<graphics.h> #include<conio.h> void drawcircle(int x0...
Read More
Write a program for Bresenham Circle Draw Algorithm in C

Write a program for Bresenham Circle Draw Algorithm in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*     Bresenham Circle Draw Algorithm */ // C-program for circle drawing // using Bresenham’s Algorithm // in computer-graphics #inc...
Read More
Write a Program for Digital Differential Analyzer line drawing algorithm  in C

Write a Program for Digital Differential Analyzer line drawing algorithm in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/* Digital Differential Analyzer algorithm    */ #include <graphics.h> #include <stdio.h> #include <math.h> #include ...
Read More
Write a program for Bresenham Line  Draw Algorithm in C

Write a program for Bresenham Line Draw Algorithm in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*     Bresenham Line  Draw Algorithm */ #include<stdio.h> #include<graphics.h> #include<conio.h> int main() {  ...
Read More
DML Triggers in PL/SQL

DML Triggers in PL/SQL

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
***************************************************** CREATE OR REPLACE TRIGGER EMPTRG BEFORE UPDATE ON EMP BEGIN    DBMS_OUTPUT.PUT_LI...
Read More
DDL Triggers in PL/SQL

DDL Triggers in PL/SQL

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
****************************************************** CREATE OR REPLACE TRIGGER BOSSTGR BEFORE DROP ON ATHARV.SCHEMA BEGIN    DBMS_O...
Read More
Procedure with parameter to add two numbers

Procedure with parameter to add two numbers

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
BY DEFAULT IN ***************************** CREATE OR REPLACE PROCEDURE ADDF(N1 NUMBER,N2 NUMBER) IS N3 NUMBER; -- ADD TWO NUMBER BE...
Read More
Procedure for hello world

Procedure for hello world

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
************************************ Procedure for hello CREATE OR REPLACE PROCEDURE HELLO IS BEGIN     DBMS_OUTPUT.PUT_LINE('HELL...
Read More
How to execute a Procedure?

How to execute a Procedure?

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
****************************** Using SQL command Promt: Execute  PROCEDURE_NAME [(Parameters)]; EXEC PROCEDURE_NAME [(Parameters)]; ...
Read More
Cursor in Procedure PL/SQL

Cursor in Procedure PL/SQL

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
********************************************** Display all employees information CREATE OR REPLACE PROCEDURE EMP_INFO IS CURSOR C1 IS ...
Read More
WHILE loop in PL/SQL

WHILE loop in PL/SQL

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
********************************************************************* FACTORICAL OF GIVEN NUMBER BY USING WHILE LOOP DECLARE NUM NUMBE...
Read More
FOR loop in PL/SQL

FOR loop in PL/SQL

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
TO DISPLAY 1 TO 10 IN REVERSE ORDER DECLARE I NUMBER:=10; BEGIN DBMS_OUTPUT.PUT_LINE('REVERSE NUMBER 1-10 '); FOR I IN REVERS...
Read More
Function in PL/SQL to return addition of two numbers

Function in PL/SQL to return addition of two numbers

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
****************************************** --FUNCTION TO RETURN ADDITION CREATE OR REPLACE FUNCTION ADD1(A NUMBER,B NUMBER) RETURN NU...
Read More
User Define Exception in PL/SQL

User Define Exception in PL/SQL

Atharva Satyendra Agrawal October 23, 2018 1 Comment
Atharva Satyendra Agrawal
Raise the exception when user try to divide the number by 1 ************************************** DECLARE     A NUMBER(2);     B NUMBE...
Read More
Implicit Cursor in PL/SQL

Implicit Cursor in PL/SQL

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
CL SCR : TO CLEAR THE SCREEN *********************************************** SQL>  DECLARE   2  VENO EMP.EMPNO%TYPE;   3  BEGIN   ...
Read More
Explicit Cursor in PL/SQL

Explicit Cursor in PL/SQL

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
SQL> set pagesize 200; SQL> set serveroutput on; ****************************************** DECLARE    CURSOR C1 IS SELECT ENAME...
Read More
ACCEPT THREE NUMBER AND DISPLAY LARGEST ONE USING PL/SQL

ACCEPT THREE NUMBER AND DISPLAY LARGEST ONE USING PL/SQL

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
***************************************************** ACCEPT THREE NUMBER AND DISPLAY LARGEST ONE DECLARE A INT; B INT; C INT; LARGE...
Read More
Write a Program to perform Bubble Sort in C

Write a Program to perform Bubble Sort in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
Bubble Sort in C  In this sorting method we compare in pair of two element if the element in first position is larger than the second el...
Read More
Write a Program to draw circle in C

Write a Program to draw circle in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*Circle*/ #include<stdio.h> #include<conio.h> #include<graphics.h> int main() {    int gm,gd=DETECT;    initgra...
Read More
Write a program of addition of two numbers and their average in C++

Write a program of addition of two numbers and their average in C++

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*This is a program of addition of two numbers and their average in C++*/ #include<iostream> #include<conio.h> int main(...
Read More
Write a program to print the table of the given number in C

Write a program to print the table of the given number in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
//this is a program to print the table of the given number #include<stdio.h> #include<conio.h> void main() { int i=1,num;...
Read More
Write a program for the addition of numbers from 1-100 in C

Write a program for the addition of numbers from 1-100 in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
//this is a program for the addition of numbers from 1-100 #include<stdio.h> #include<conio.h> void main() { int i=1,sum=...
Read More
Write a program to print the multiples of 7 from 1- 100 in C

Write a program to print the multiples of 7 from 1- 100 in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
//this is a program to print the multiples of 7 from 1- 100 #include<stdio.h> #include<conio.h> void main() { int i=1; ...
Read More
Write a program to print the multiples of 5 from 1-50 in C

Write a program to print the multiples of 5 from 1-50 in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
//this is a program to print the multiples of 5 from 1-50 #include<stdio.h> #include<conio.h> void main() { int i=1; ...
Read More
Write a program for demonstration of do-while loop in C

Write a program for demonstration of do-while loop in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
//this is a program for demonstration of do-while loop #include<stdio.h> #include<conio.h> void main() { int i=1; pri...
Read More
Write a program to print even numbers from 1-10 using do while loop in C

Write a program to print even numbers from 1-10 using do while loop in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
//this is a program to print even numbers from 1-10 using do while loop #include<stdio.h> #include<conio.h> void main() { ...
Read More
Write a program for the demonstration of continuity in C using Do While loop

Write a program for the demonstration of continuity in C using Do While loop

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
//this is a program for the demostration of continuity #include<stdio.h> #include<conio.h> void main() { char ch; do{...
Read More
Write a program to find sum of digits in C

Write a program to find sum of digits in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
#include<stdio.h> #include<conio.h> void main() { int rem,sum,n; sum=0; printf("\n\n Enter Any number: ");...
Read More
Write a Program to find Sum and average of 3 digit in C

Write a Program to find Sum and average of 3 digit in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
#include<stdio.h> #include<conio.h> void main() { int num1,num2,num3,sum; float avg; printf("\n\nEnter any Thr...
Read More
Write a Program to find largest value using ternary operator in C

Write a Program to find largest value using ternary operator in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
#include<stdio.h> #include<conio.h> void main() { int a,b,max; printf("\n\n Enter any two values: "); scan...
Read More
Write a Program  to left and right justify in C

Write a Program to left and right justify in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
#include<stdio.h> #include<conio.h> void main() { int num; printf("\n\nEnter any number: "); scanf("%...
Read More
First C Program

First C Program

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
#include<stdio.h> #include<conio.h> void main() { printf("Hello C"); }
Read More
Write a Program to find Gross Salary in C

Write a Program to find Gross Salary in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
#include<stdio.h> #include<conio.h> void main() { float bs,hra,da,gs,ns; printf("\n\n Enter your Basic Salary: ...
Read More
Write a Program in C to convert Fahrenheit to Celcius in C

Write a Program in C to convert Fahrenheit to Celcius in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
#include<stdio.h> #include<conio.h> void main() { float fah,cel; printf("\n\n Enter the temperature in Fahrenheit...
Read More
Write a program to demostrate the type qualifires in C

Write a program to demostrate the type qualifires in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
/*This is a program to demostrate the type qualifires*/ #include<stdio.h> #include<conio.h> void main() { int i=10; sig...
Read More
Write a Program to demonstrate Increment Operator in C

Write a Program to demonstrate Increment Operator in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
#include<stdio.h> #include<conio.h> void main() { int x=10,y=20; /*Pre Increment*/ printf("\n\n\t\tPre-Incremen...
Read More
Write a Program to calculate average of 5 Subject in C

Write a Program to calculate average of 5 Subject in C

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
#include<stdio.h> #include<conio.h> void main() { int s1,s2,s3,s4,s5,sum; float avg; printf("\n\n Enter the mar...
Read More
Write a program to find Area of Cylinder in c

Write a program to find Area of Cylinder in c

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
#include<stdio.h> #include<conio.h>  void main()  {   int height;   float rad,area;     printf("\n\nEnter the ...
Read More
Write a Program to calculate area of circle in c

Write a Program to calculate area of circle in c

Atharva Satyendra Agrawal October 23, 2018 Add Comment
Atharva Satyendra Agrawal
#include<stdio.h> #include<conio.h> void main() { float rad,area; printf("\n\n Enter the Radius of Circle:"...
Read More
Write a program to convert Amount to Paisa in C

Write a program to convert Amount to Paisa in C

Atharva Satyendra Agrawal October 23, 2018 1 Comment
Atharva Satyendra Agrawal
/* Amount to Paisa */ #include<stdio.h> #include<conio.h> void main() { int amount,paisa; printf("\n\nEnter the ...
Read More
Subscribe to: Posts (Atom)

Page Views

Subscribe To

Posts
Atom
Posts
All Comments
Atom
All Comments

Blog Archive

  • ►  2022 (85)
    • ►  December (11)
      • Dec 09 (1)
      • Dec 08 (1)
      • Dec 07 (1)
      • Dec 06 (1)
      • Dec 05 (1)
      • Dec 04 (1)
      • Dec 03 (1)
      • Dec 02 (2)
      • Dec 01 (2)
    • ►  November (32)
      • Nov 30 (2)
      • Nov 29 (2)
      • Nov 28 (2)
      • Nov 27 (2)
      • Nov 26 (2)
      • Nov 25 (2)
      • Nov 24 (2)
      • Nov 21 (11)
      • Nov 20 (1)
      • Nov 18 (6)
    • ►  September (4)
      • Sep 21 (2)
      • Sep 05 (2)
    • ►  August (13)
      • Aug 18 (3)
      • Aug 10 (1)
      • Aug 07 (9)
    • ►  May (17)
      • May 25 (3)
      • May 15 (3)
      • May 13 (1)
      • May 08 (10)
    • ►  April (2)
      • Apr 15 (2)
    • ►  March (1)
      • Mar 24 (1)
    • ►  February (5)
      • Feb 22 (1)
      • Feb 12 (2)
      • Feb 11 (2)
  • ►  2021 (8)
    • ►  August (1)
      • Aug 07 (1)
    • ►  July (2)
      • Jul 26 (1)
      • Jul 12 (1)
    • ►  June (4)
      • Jun 10 (1)
      • Jun 08 (1)
      • Jun 07 (1)
      • Jun 05 (1)
    • ►  May (1)
      • May 26 (1)
  • ►  2020 (318)
    • ►  November (4)
      • Nov 29 (1)
      • Nov 26 (1)
      • Nov 10 (1)
      • Nov 05 (1)
    • ►  October (1)
      • Oct 18 (1)
    • ►  August (61)
      • Aug 13 (16)
      • Aug 12 (13)
      • Aug 11 (12)
      • Aug 10 (3)
      • Aug 08 (2)
      • Aug 07 (3)
      • Aug 06 (1)
      • Aug 03 (1)
      • Aug 01 (10)
    • ►  July (75)
      • Jul 31 (3)
      • Jul 30 (2)
      • Jul 29 (1)
      • Jul 28 (2)
      • Jul 27 (7)
      • Jul 25 (8)
      • Jul 24 (5)
      • Jul 23 (4)
      • Jul 21 (1)
      • Jul 20 (3)
      • Jul 19 (5)
      • Jul 18 (3)
      • Jul 17 (12)
      • Jul 15 (5)
      • Jul 14 (2)
      • Jul 13 (4)
      • Jul 12 (2)
      • Jul 03 (1)
      • Jul 02 (5)
    • ►  June (1)
      • Jun 24 (1)
    • ►  May (29)
      • May 16 (1)
      • May 13 (5)
      • May 09 (7)
      • May 07 (6)
      • May 06 (4)
      • May 05 (3)
      • May 04 (2)
      • May 02 (1)
    • ►  March (92)
      • Mar 27 (21)
      • Mar 26 (36)
      • Mar 24 (12)
      • Mar 23 (8)
      • Mar 18 (1)
      • Mar 17 (1)
      • Mar 16 (5)
      • Mar 15 (5)
      • Mar 10 (2)
      • Mar 08 (1)
    • ►  February (6)
      • Feb 29 (2)
      • Feb 25 (2)
      • Feb 09 (1)
      • Feb 08 (1)
    • ►  January (49)
      • Jan 30 (3)
      • Jan 29 (10)
      • Jan 28 (2)
      • Jan 27 (9)
      • Jan 22 (1)
      • Jan 19 (1)
      • Jan 18 (1)
      • Jan 17 (3)
      • Jan 16 (2)
      • Jan 12 (2)
      • Jan 05 (15)
  • ►  2019 (283)
    • ►  December (1)
      • Dec 01 (1)
    • ►  November (3)
      • Nov 30 (1)
      • Nov 27 (1)
      • Nov 22 (1)
    • ►  October (51)
      • Oct 18 (9)
      • Oct 17 (17)
      • Oct 15 (25)
    • ►  May (8)
      • May 22 (5)
      • May 07 (3)
    • ►  April (35)
      • Apr 23 (1)
      • Apr 20 (8)
      • Apr 19 (4)
      • Apr 15 (3)
      • Apr 14 (3)
      • Apr 12 (3)
      • Apr 10 (3)
      • Apr 09 (2)
      • Apr 04 (1)
      • Apr 03 (2)
      • Apr 02 (1)
      • Apr 01 (4)
    • ►  March (82)
      • Mar 30 (3)
      • Mar 28 (8)
      • Mar 27 (3)
      • Mar 24 (9)
      • Mar 23 (8)
      • Mar 22 (3)
      • Mar 21 (2)
      • Mar 20 (2)
      • Mar 17 (2)
      • Mar 16 (1)
      • Mar 15 (3)
      • Mar 14 (2)
      • Mar 10 (2)
      • Mar 07 (2)
      • Mar 06 (9)
      • Mar 05 (9)
      • Mar 04 (1)
      • Mar 03 (3)
      • Mar 02 (8)
      • Mar 01 (2)
    • ►  February (12)
      • Feb 20 (3)
      • Feb 19 (3)
      • Feb 18 (1)
      • Feb 17 (1)
      • Feb 07 (2)
      • Feb 03 (2)
    • ►  January (91)
      • Jan 31 (10)
      • Jan 30 (4)
      • Jan 28 (1)
      • Jan 27 (5)
      • Jan 26 (9)
      • Jan 25 (7)
      • Jan 24 (3)
      • Jan 23 (14)
      • Jan 20 (1)
      • Jan 17 (15)
      • Jan 15 (7)
      • Jan 12 (1)
      • Jan 05 (2)
      • Jan 04 (1)
      • Jan 03 (4)
      • Jan 02 (7)
  • ▼  2018 (402)
    • ►  December (44)
      • Dec 30 (8)
      • Dec 29 (2)
      • Dec 27 (6)
      • Dec 25 (2)
      • Dec 24 (1)
      • Dec 16 (2)
      • Dec 15 (3)
      • Dec 14 (3)
      • Dec 12 (8)
      • Dec 11 (2)
      • Dec 06 (7)
    • ►  November (14)
      • Nov 23 (1)
      • Nov 21 (9)
      • Nov 16 (1)
      • Nov 15 (1)
      • Nov 07 (1)
      • Nov 01 (1)
    • ▼  October (344)
      • Oct 31 (4)
      • Oct 27 (6)
      • Oct 26 (12)
      • Oct 25 (194)
      • Oct 24 (75)
      • Oct 23 (53)

Labels

  • 2D
  • 3D
  • 8086 16 bit Microprocessor
  • AdvJava
  • Android
  • AndroidActivity
  • AndroidDB
  • AndroidLayout
  • AndroidView
  • Applet and Graphics in Java
  • arduino-uno
  • Arrau in cpp
  • Array
  • ArrayinPHP
  • Assembly
  • AtmelStudio
  • Basic C Program
  • Basic Cpp Program
  • Basic of Java
  • Basic Program in Java
  • Basic VB
  • BasicofPHP
  • BasicOfPython
  • BasicPythonProgram
  • bootstrap
  • C
  • C Graphics
  • CG_OPENGL
  • Circle
  • Clas file in Java
  • ClassesPHP
  • Classifier
  • CollectionTypePython
  • Constructor and Destructor in Cpp
  • Cpp
  • css
  • Cursor
  • Curve
  • Data Base Management System (Oracle)
  • Data Communication
  • Data Structure Using C
  • DatabasePHP
  • Do While Loop in C
  • DQL Operations
  • Entrepreneurship
  • Environmental
  • Exam Cpp
  • Exception Handling
  • Exception Multi threading in Java
  • File Operation in Cpp
  • Files in Java
  • For
  • Form Based VB NET
  • Friend Function in cpp
  • Function in plsql
  • Functions
  • FunctionsPython
  • GraphicsPHP
  • Graphs
  • html
  • IF control structure
  • Industrial Training
  • Inheritance in cpp
  • Inheritance in Java
  • Java
  • Java Practical
  • JavaScript
  • JSP
  • Line Drawing Algorithm
  • Linked List
  • Loops in VB
  • LoopsinPython
  • Machine Learning
  • Matplotlib
  • Member Function
  • Micro Practical
  • Micro Program
  • Microprocessors
  • Nested for
  • nodejs
  • Notes Atharva
  • Numpy
  • Object
  • Operating Systems
  • Pandas
  • Pass by reference in cpp
  • Pass by value in cpp
  • PHP
  • PIC18
  • PL/SQL
  • Pointer in c
  • Pointers in cpp
  • Polygon Filling
  • Polymorphism in cpp
  • postgresql
  • Practical Exam cpp
  • Procedure
  • Project
  • Python
  • Queue
  • react-native
  • reactjs
  • Regression
  • Seaborn
  • Searching
  • Shapes
  • Software Development Process
  • Software Engineering
  • Software Testing
  • Sorting in C
  • Stack
  • State the output in cpp
  • Static
  • Static in Java
  • String Function
  • Structure
  • Switch
  • Technical Writing
  • Trees
  • Triggers
  • VB
  • VB Practical
  • vuejs
  • Ways Data Load in Java
  • Ways to create object in java
  • WebPHP
  • While Loop

Web Development

  • HTML5
  • CSS3
  • Bootstrap
  • JavaScript
  • VueJS
  • ReactJS
  • NODE.js
  • PHP
  • PostgreSQL

Programmiing

  • C Language
  • C++
  • Java
  • Advanced Java
  • VB.NET
  • Assembly Language
  • Mobile Application Development
  • Python
  • Data-Structure Using C
  • Advanced Data-Structure Using C++

Advance Programming

  • Machine Learning using Python
  • Data-Structure using C
  • Microprocessor 8086
  • Atmel Studio AVR MicroControllers in C
  • PIC18F Micro-Controller
  • OS | SHELL SCRIPTING | SYSTEM PROGRAMMING IN C

All

  • Project
  • Notes by Atharva Agrawal
  • Data Base Management System
  • Computer Graphics using OpenGL
  • Computer Graphics Using C
  • Software Engineering
  • Software Testing
  • MSBTE 6 Weeks Industrial Training
  • Services-Offered

  • Home
  • About
  • Privacy Policy
  • Contact Us
  • Apps For Study
MENU
Desktop Version
Copyright © 2020 Coding Atharva All Right Reserved
Created by Atharva Agrawal