Saturday 9 September 2017

APPLE TO INTERFACE HUMAN BRAIN WITH COMPUTER USING iThink.

APPLE TO INTERFACE HUMAN BRAIN WITH COMPUTER USING iThink.

  Machine and human brain can start a conversation in their language which we will never understand...     Like Facebook AI project.It shouldn't be like Facebook AI project.



   http://www.techlookat.com/2017/08/apple-to-interface-human-brain-with.html

Wednesday 6 September 2017

Run It ....It is really funny..

#include<stdio.h>
#include<conio.h>
void main()
{
char ch[]="I AM AN IDIOT.";
char c='A';
int i=0;
while(c)
{
c=getch();
printf("%c\a",ch[i]);
i++;
if(i==14)
{
printf(" "); i=0;
}
}
}