Month: June 2016

30
Jun
2016

How to count numbers from string ?

code: #include<stdio.h> #include<stdlib.h> int main(){ char line[]=”1 -2 10000 -50 20 7 445 -4″; char *p,*e; long…

25
Jun
2016

Blink Without Delay – Arduino

Code int ledpin=13; int value=LOW; long previousmillis=0; long interval = 100; void setup() { // put your…

23
Jun
2016

Swap in C

Swap in C #include<stdio.h> int main() { int x,y,z; x=5; y=7; printf(“Before x=%d y=%d\n”,x,y); z=x; x=y; y=z;…

03
Jun
2016

There is no shortcut !

If you want to be master at something there is no shortcut !