Skip to main content

Visions and Missions

More than just Coding........

We works on the motto of digital education to students , who by any reason don't have notes at time os its need. Hence we are taking charge that Learning doesnot remain constrained to the classrooms only, but can be access any time digitally.

Special care will be given to students who gets problem while writing any program , as our tagline is also - "Build your CODING strong....." . Students can also seek for help on "Contact Us" page.
By learning with us , we assure your complete command at the 'C' programming.

Comments

Popular posts from this blog

Reversing digits of a number

#include<stdio.h> #include<conio.h> void main() { clrscr(); int ,num,rev=0,rem; printf("Enter the number:"); scanf("%d",&num); while(num!=0) { rem=num%10; rev=rev*10+rem; num=num/10; } printf("Reverse of given Number is:%d",rev); getch(); }

Print Number with its square

#include<stdio.h> #include<conio.h> void main() { clrscr(); int i,lim; printf("Enter the limit:"); scanf("%d",&lim); printf("Number\t\tSquare\n"); for(i=1;i<=10;i++) printf("%d\t\t%d\n",i,i*i); getch(); }