GECR Corner

Jay's Diary - The Roaring 20's

Nikhil's Diary- The Changing Times

Want to Contribute?

If you have something cool you would like to share, don’t hesitate to get in touch. We’d be happy to feature your work! For more info CLICK HERE

Academic Projects

Academic Assignments

Video Burger

Academic Notes

Downloads

Tech. Burger

Your Contributions

Irony Burger

Programming Burger

Recent Posts

Thursday 24 November 2016

Be The Change You Want To See In The World

Hey guys meeting u after a long time .... Now I am thinking to work on a new project ... As it was well said by father of our nation Mahatma Gandhi that "Be The Change You Want To See In The World" . So, me and my friends were thinking about the placement cell of the college and its current situation ... we realised that if we didn't did anything ... soon we will be end up doing some stuff for some company for 5-6 lakhs per annum and which we didn't want. All the seniors had the same complaints of not having good companies in the college .. and the staff replied the students weren't of that level .... and hence .... after looking at all the stuff....  I realised that I should be the change I want to see in the world and right now my world is my seniors , my juniors , my classmates , my friends , my relatives and most important my family .... and last but not the least ... MY COLLEGE... So, in order to do something new ... I asked some juniors to join me and do something different .... and hope we will end up creating some history... So, I welcome all the guys to the group and hope we will became the change that we wanted to see in the world .... Pls do reply how u liked my idea ... 😄😄😄😄😄

Thursday 27 October 2016

C Program to Print A Pattern of Prime Numbers


C Program to Print A Pattern of Prime Numbers

Pattern to be printed looks like following, containing only prime numbers in regular sequence:



C program : 

#include<stdio.h>
#include<conio.h>
int nextprime(int);
int isprime(int);
void main()
{
 int i,p=1,n,j;
 clrscr();
 printf("Enter the no. of lines to be printed: ");
 scanf("%d",&n);
 if(n==0)
 printf("\nINVALID INPUT");
 printf("\n%4d\n",p);
 if(n!=1)
 {
  for(i=2;i<=n;i++)
  {
   for(j=1;j<=i;j++)
   {
     p=nextprime(p);
     printf("%4d",p);
   }
   printf("\n");
  }
 }
 printf(" \n Visit www.EngineersBurger.com for more intresting stuff ! \n -  Jay Akbari");
 getch();
}

int nextprime(int s)
{
 s=s+1;
 while(!isprime(s) )
 {
  s=s+1;
 }
 return s;
}

int isprime(int s)
{
 int i;
 for(i=2;i<s;i++)
 {
  if(s%i==0)
  return 0;
 }
 return 1;
}



Download .C file of this program : CLICK HERE
 

Wednesday 19 October 2016

Solutions of Maths(AEM) Tutorials

 


Solutions of Maths(AEM) Tutorials


Advanced Engineersing Mathematics (AEM) | GTU SEM-III | Bachelor of Engineering

 

TUTORIAL QUESTIONS


SOLUTIONS


Have a wonderful day !

DBMS LAB MANUAL | SQL COMMANDS

 

DBMS LAB MANUAL | SQL COMMANDS

Database Management Systems(DBMS)| Oracle SQL Commands | DBMS LAB Manual

 



Have A Wonderful Day !

--------------------------------------------------------------------

Word Of The Day | Learn And Use A New Word Everyday!

--------------------------------------------------------------------

"Insidious"

Working or spreading in a hidden and usually injurious way

"glaucoma is an insidious disease"

Copyright © 2016 Engineers Burger - All Rights Reserved. Digital Craftmanship - Nikhil Jha and Jay Akbari.
MyBloggerLab.com