Category: Programming

26
Jan
2017

Loops in python

Loops in python: fruits=[‘banana’,’apple’,’guava’] for fruit in fruits: print ‘Current Fruit:’,fruit print “Goodbye” Output: Current Fruit: banana…

02
Jan
2017

URI Online Judge Solution | 1049 Animal

strcmp in c/c++ issues is the hard part nothing else…Just try to learn this 🙂 Logical condition…

02
Jan
2017

String Compare in C/C++

http://stackoverflow.com/questions/8004237/how-do-i-properly-compare-strings-in-c

29
Jul
2016

Use codeblocks with OpenGl

23
Jul
2016

Flags in C

Reference: https://www.daniweb.com/programming/software-development/threads/201233/use-of-flag-in-c

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…