Skip to content

Instantly share code, notes, and snippets.

View cynx's full-sized avatar
👓
blow

cynx cynx

👓
blow
View GitHub Profile
@cynx
cynx / Count Program
Last active August 29, 2015 14:02
C Program to count words, new line and characters
//count words, new line and characters
#include <stdio.h>
#define IN 1
#define OUT 0
int main()
{
int c, nc, nl, nw, state;
@cynx
cynx / atoi program in C
Created June 9, 2014 16:59
C program to convert string of numbers to their numeric equivalent
#include <stdio.h>
int main()
{
int atoi (char s[]);
printf("%d",atoi("239"));
return 0;
}