Tuesday, 10 September 2013

[vvpce2014] google developers group rajkot

GOOGLE DEVELOPER FESTIVAL IN RAJKOT

LOOK SITES BELOW AND ATTACHMENTS ATTACHED .

WATCH DETAILS AND REGISTER AT : http://www.gdgrajkot.com/


--
 
---
You received this message because you are subscribed to the Google Groups "vvpce2014" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vvpce2014+unsubscribe@googlegroups.com.
To post to this group, send email to vvpce2014@googlegroups.com.
Visit this group at http://groups.google.com/group/vvpce2014.
For more options, visit https://groups.google.com/groups/opt_out.

[vvpce2014] Java assignment 3

Enjoy...

--

---
You received this message because you are subscribed to the Google Groups "vvpce2014" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vvpce2014+unsubscribe@googlegroups.com.
To post to this group, send email to vvpce2014@googlegroups.com.
Visit this group at http://groups.google.com/group/vvpce2014.
For more options, visit https://groups.google.com/groups/opt_out.

[vvpce2014] CD.....CD.....CD




--
 
---
You received this message because you are subscribed to the Google Groups "vvpce2014" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vvpce2014+unsubscribe@googlegroups.com.
To post to this group, send email to vvpce2014@googlegroups.com.
Visit this group at http://groups.google.com/group/vvpce2014.
For more options, visit https://groups.google.com/groups/opt_out.

[vvpce2014] Fwd: FW: rdp in c

#include"stdio.h"
#include"conio.h"
#include"string.h"
#include"stdlib.h"
#include"ctype.h"


char ip_sym[15],ip_ptr=0,op[50],tmp[50];
void e_prime();
void e();
void t_prime();
void t();
void f();
void advance();
int n=0;
void e()
{
strcpy(op,"TE'");
printf("E=%-25s",op);
printf("E->TE'\n");
t();
e_prime();
}

void e_prime()
{
int i,n=0,l;
for(i=0;i<=strlen(op);i++)
if(op[i]!='e')
tmp[n++]=op[i];
strcpy(op,tmp);
l=strlen(op);
for(n=0;n < l && op[n]!='E';n++);
if(ip_sym[ip_ptr]=='+')
{
i=n+2;
do
{
op[i+2]=op[i];
i++;
}while(i<=l);
op[n++]='+';
op[n++]='T';
op[n++]='E';
op[n++]=39;
printf("E=%-25s",op);
printf("E'->+TE'\n");
advance();
t();
e_prime();
}
else
{
op[n]='e';
for(i=n+1;i<=strlen(op);i++)
op[i]=op[i+1];
printf("E=%-25s",op);
printf("E'->e");
}
}
void t()
{
int i,n=0,l;
for(i=0;i<=strlen(op);i++)
if(op[i]!='e')
tmp[n++]=op[i];
strcpy(op,tmp);
l=strlen(op);
for(n=0;n < l && op[n]!='T';n++);

i=n+1;
do
{
op[i+2]=op[i];
i++;
}while(i < l);
op[n++]='F';
op[n++]='T';
op[n++]=39;
printf("E=%-25s",op);
printf("T->FT'\n");
f();
t_prime();
}

void t_prime()
{
int i,n=0,l;
for(i=0;i<=strlen(op);i++)
if(op[i]!='e')
tmp[n++]=op[i];
strcpy(op,tmp);
l=strlen(op);
for(n=0;n < l && op[n]!='T';n++);
if(ip_sym[ip_ptr]=='*')
{
i=n+2;
do
{
op[i+2]=op[i];
i++;
}while(i < l);
op[n++]='*';
op[n++]='F';
op[n++]='T';
op[n++]=39;
printf("E=%-25s",op);
printf("T'->*FT'\n");
advance();
f();
t_prime();
}
else
{
op[n]='e';
for(i=n+1;i<=strlen(op);i++)
op[i]=op[i+1];
printf("E=%-25s",op);
printf("T'->e\n");
}
}

void f()
{
int i,n=0,l;
for(i=0;i<=strlen(op);i++)
if(op[i]!='e')
tmp[n++]=op[i];
strcpy(op,tmp);
l=strlen(op);
for(n=0;n < l && op[n]!='F';n++);
if((ip_sym[ip_ptr]=='i')||(ip_sym[ip_ptr]=='I'))
{
op[n]='i';
printf("E=%-25s",op);
printf("F->i\n");
advance();
}
else
{
if(ip_sym[ip_ptr]=='(')
{
advance();
e();
if(ip_sym[ip_ptr]==')')
{
advance();
i=n+2;
do
{
op[i+2]=op[i];
i++;
}while(i<=l);
op[n++]='(';
op[n++]='E';
op[n++]=')';
printf("E=%-25s",op);
printf("F->(E)\n");
}
}
else
{
printf("\n\t syntax error");
getch();
exit(1);
}
}
}

void advance()
{
ip_ptr++;
}

void main()
{
int i;
clrscr();
printf("\nGrammar without left recursion");
printf("\n\t\t E->TE' \n\t\t E'->+TE'|e \n\t\t T->FT' ");
printf("\n\t\t T'->*FT'|e \n\t\t F->(E)|i");
printf("\n Enter the input expression:");
gets(ip_sym);
printf("Expressions");
printf("\t Sequence of production rules\n");
e();
for(i=0;i < strlen(ip_sym);i++)
{
if(ip_sym[i]!='+'&&ip_sym[i]!='*'&&ip_sym[i]!='('&&
ip_sym[i]!=')'&&ip_sym[i]!='i'&&ip_sym[i]!='I')
{
printf("\nSyntax error");
break;
}
for(i=0;i<=strlen(op);i++)
if(op[i]!='e')
tmp[n++]=op[i];
strcpy(op,tmp);
printf("\nE=%-25s",op);
}
getch();
}


---------- Forwarded message ----------
From: kunal relia <kunal_relia91@hotmail.com>
Date: Mon, Apr 29, 2013 at 4:38 PM
Subject: FW: rdp in c
To: Mudit Dholakia <muditdholakia@gmail.com>





Date: Thu, 18 Apr 2013 08:54:41 +0530
Subject: Fwd: rdp in c
From: aadikhara@gmail.com
To: chintankapoor@gmail.com; adityam93224@gmail.com; kunal_relia91@hotmail.com; kishanrathod302117@gmail.com



---------- Forwarded message ----------
From: Addy Khara <aadikhara@gmail.com>
Date: Thu, Apr 18, 2013 at 8:53 AM
Subject: rdp in c
To: kamal.sutaria@gmail.com





--
 
---
You received this message because you are subscribed to the Google Groups "vvpce2014" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vvpce2014+unsubscribe@googlegroups.com.
To post to this group, send email to vvpce2014@googlegroups.com.
Visit this group at http://groups.google.com/group/vvpce2014.
For more options, visit https://groups.google.com/groups/opt_out.

[vvpce2014] Fwd: GTU S4 ENTRE WEEKEND !! 13th-14th-15th Sept 2013



Plz send this to all student coordinators and do let me know If anybody is interested

---------- Forwarded message ----------
From: Hiranmay Mahanta
Date: Sunday, September 8, 2013
Subject: Fwd: GTU S4 ENTRE WEEKEND !! 13th-14th-15th Sept 2013
To: sachin parikh <sachinparikh@hotmail.com>, krishna joshi <krishnaonline06@gmail.com>





GTU S4 ENTRE WEEKEND !! 

call to your potential students , programmers, designers, management folks  and other similar stakeholders. ( special call to IT/CS students )


Come, build, bond,rejuvenate and impact with your start up in 54 hours !!

Kindly refer  the given video on what's gonna happen during the said event  based on its earlier edition as launched by us .


with best regards

Hiranmay Mahanta 








--
 
---
You received this message because you are subscribed to the Google Groups "vvpce2014" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vvpce2014+unsubscribe@googlegroups.com.
To post to this group, send email to vvpce2014@googlegroups.com.
Visit this group at http://groups.google.com/group/vvpce2014.
For more options, visit https://groups.google.com/groups/opt_out.

[vvpce2014] Fwd: PHASE-III: Patent Search and Analysis Report- for final year projects

kindly find the GTU circular with reference to previous mail.

with best regards

Dr. Krishna Joshi


On Wed, Sep 4, 2013 at 10:08 AM, krishna joshi <krishnaonline06@gmail.com> wrote:
Respected Sir/Madam,

THE THIRD PHASE: The teams are required to do patent search related to their IDP/UDP/Final year projects and submit a report of their work online.
During phase-III, every student within a team has to study at least five (5) patents related either to his/her IDP/UDP or related to his/her area of interest. Analysed data of each of these five patents is to be submitted online at


on or before 22nd September 2013.

thanks and regards

Dr. Krishna Joshi



--
 
---
You received this message because you are subscribed to the Google Groups "vvpce2014" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vvpce2014+unsubscribe@googlegroups.com.
To post to this group, send email to vvpce2014@googlegroups.com.
Visit this group at http://groups.google.com/group/vvpce2014.
For more options, visit https://groups.google.com/groups/opt_out.

[vvpce2014] Fwd: Fw: Fwd: Kindly share it with your final year Students of Engineering and their Faculty-Guides of your institute institute .


Dear Sir/Mam 

Kindly share it with  your final year Students of Engineering and their Faculty-Guides of your institute institute . 

Final year Students of Engineering and their Faculty-Guides: Students are required to submit Patent Search and Analysis Report on their Final Year projects online .



We have shared the necessary requirements and materials to support the students.

with best regards

Team GTU Innovation Council



 





--
 
---
You received this message because you are subscribed to the Google Groups "vvpce2014" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vvpce2014+unsubscribe@googlegroups.com.
To post to this group, send email to vvpce2014@googlegroups.com.
Visit this group at http://groups.google.com/group/vvpce2014.
For more options, visit https://groups.google.com/groups/opt_out.