Skip to content

Instantly share code, notes, and snippets.

View ashishkakkad8's full-sized avatar
👨‍💻
Koding

Ashish Kakkad ashishkakkad8

👨‍💻
Koding
View GitHub Profile
@ashishkakkad8
ashishkakkad8 / pyramid.c
Created February 15, 2016 10:12
Pyramid in C
#include<stdio.h>
int main() {
int i, j, spaces = 0, sc, n = 0;
int k = 1;
printf("Enter Number of Lines = ");
scanf("%d",&n);
spaces = n - 1;
@ashishkakkad8
ashishkakkad8 / JOSNArraySwiftParsingiOS
Last active December 31, 2017 05:59
JSON Array Parsing in Swift Langauage - Swift 3 – iOS 10 – Xcode 8 GM
//
// ViewController.swift
// SwiftJSONParsingDemo
//
// Created by Ashish Kakkad on 12/10/16.
// Copyright © 2016 Kode. All rights reserved.
//
import UIKit