Skip to content

Instantly share code, notes, and snippets.

View Vijay-Kumavat's full-sized avatar
🎯
Focusing

Vijay Kumavat Vijay-Kumavat

🎯
Focusing
View GitHub Profile
@Vijay-Kumavat
Vijay-Kumavat / Basic_of_PHP.php
Created December 28, 2020 14:55
This program file has basic topic of php like : PHP Variables, Syntax, Variable Scope, Keywords || PHP Strings, Constants, Operators || PHP Elseif, Switch, Statements || PHP Functions || Echo vs. Print and Data Output || PHP Conditional Statements || PHP Arrays, Multidimensional Arrays, Sorting Arrays
<!DOCTYPE html>
<html>
<head>
<title>PHP Lession</title>
</head>
<body>
<?php
echo "Hello"."<hr>"; // echo is displayed statement
@Vijay-Kumavat
Vijay-Kumavat / Main_Programs.c
Created December 28, 2020 15:09
The all programs of c language : Addition and multiply || Quotient and Remainder || Swap || Positive and Negative || Even and Odd || Vowel || Check Leap Year || check Alphabet || Sum of number || Factorial || Multiplication table || Factorial using function || Sum of N natural numbers || Prime || Strong || Armstrong || Factorial || Reverse || Pa…
#include<stdio.h>
#include<conio.h>
#include<math.h>
#include<string.h>
// #include<limit.h>
// int fact(int n);
// bool isprime(int n);
int factorial(int);
// int fibo(int);
@Vijay-Kumavat
Vijay-Kumavat / CSharpProgram.cs
Last active September 4, 2021 10:28
C# Programs
/****************
-> Given two integers, write a method that swaps them using temporary variable.
Expected input and output
SwapTwoNumbers(87, 45) → "Before: a = 87, b = 45; After: a = 45, b = 87"
SwapTwoNumbers(-13, 2) → "Before: a = -13, b = 2; After: a = 2, b = -13"
*****************/
using System;
public class HelloWorld {
public static void Main() {
@Vijay-Kumavat
Vijay-Kumavat / Raff.cs
Last active March 15, 2024 10:32
Raff C# Code
using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using ExcelDataReader;
class Person
{
public string Name { get; set; }
public int Age { get; set; }