Skip to content

Instantly share code, notes, and snippets.

View programmingfaster0226's full-sized avatar

programmingfaster0226

View GitHub Profile
#include <stdio.h>
#include<conio.h>
int primeno(int, int);
int main()
{
int num,c;
printf("Enter a number: ");
scanf("%d", &num);
c= primeno(num, num / 2);
if (c == 1)
Compilation completed successfullyOn-the-fly type checking
Welcome to the future,of programmingfaster!
@programmingfaster0226
programmingfaster0226 / programmingfaster
Created January 29, 2018 08:10
programmingfaster.com
/**
* We declare a package-level function main which returns Unit and takes
* an Array of strings as a parameter. Note that semicolons are optional.
*/
fun main(args: Array<String>) {
println("Welcome to the future,of programmingfaster!")
}