<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2050784706218741556</id><updated>2011-04-21T17:34:58.819-07:00</updated><title type='text'>Alex Jilas</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://alexjilas.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2050784706218741556/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://alexjilas.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Alex Jilas</name><uri>http://www.blogger.com/profile/15879695874477555172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2050784706218741556.post-5188907573128666394</id><published>2008-10-21T03:20:00.000-07:00</published><updated>2008-10-21T08:13:51.454-07:00</updated><title type='text'>C Language - Verificando a ocorrência de um caracter em uma string</title><content type='html'>Na linguagem C não existe o tipo de dados "String" como em Java existe por exemplo. Na linguagem C uma string na verdade é um VETOR de CARACTERES representado pelo tipo char e com um tamanho definido pelo programador, por exemplo:&lt;br /&gt;&lt;br /&gt;char texto[100];&lt;br /&gt;&lt;br /&gt;Nesse caso acima essa "string" pode receber até 100 caracteres. A primeira posição desse vetor de caracteres(string) será texto[0] (Variável texto na posição 0 que será a primeira posição). Na última posição da string o caracter nulo será armazenado que é representado por '\0'. Vamos supor que o usuário tenha digitado na o nome ALEX armazenado na variável texto. Veja como ficaria:&lt;br /&gt;&lt;br /&gt;texto[0] = 'A';&lt;br /&gt;texto[1] = 'L';&lt;br /&gt;texto[2] = 'E';&lt;br /&gt;texto[3] = 'X';&lt;br /&gt;texto[4] = '\0';&lt;br /&gt;&lt;br /&gt;Vamos ver um código demonstrando a ocorrência de um caracter em uma string&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2050784706218741556-5188907573128666394?l=alexjilas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://alexjilas.blogspot.com/feeds/5188907573128666394/comments/default' title='Postar comentários'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2050784706218741556&amp;postID=5188907573128666394' title='0 Comentários'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2050784706218741556/posts/default/5188907573128666394'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2050784706218741556/posts/default/5188907573128666394'/><link rel='alternate' type='text/html' href='http://alexjilas.blogspot.com/2008/10/c-language-verificando-ocorrncia-de-um.html' title='C Language - Verificando a ocorrência de um caracter em uma string'/><author><name>Alex Jilas</name><uri>http://www.blogger.com/profile/15879695874477555172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2050784706218741556.post-5431268385661008474</id><published>2008-10-17T13:33:00.000-07:00</published><updated>2008-10-21T08:14:23.447-07:00</updated><title type='text'>C language - Adding 2 numbers</title><content type='html'>Hey :)&lt;br /&gt;&lt;br /&gt;What is a variable ?&lt;br /&gt;&lt;br /&gt;let's suppose you want to add 2 numbers, each number, each value needs a space in the memory, you need to store this 2 numbers in "variables", because of that, you need to declare at the beginning of your program.&lt;br /&gt;&lt;br /&gt;let's look at our code:&lt;br /&gt;&lt;br /&gt;# include &lt; stdio.h &gt;&lt;br /&gt;&lt;br /&gt;# include &lt; stdlib.h &gt;&lt;br /&gt;&lt;br /&gt;int main()&lt;br /&gt;{&lt;br /&gt;    int num1, num2, result; //Let's declare 3 variables&lt;br /&gt;    &lt;br /&gt;    printf("Type the first number "); //Write this message&lt;br /&gt;    scanf("%d", &amp;num1); //Read the value, "%d" means is a integer&lt;br /&gt;    &lt;br /&gt;    printf("Type the first number "); //Write this message&lt;br /&gt;    scanf("%d", &amp;num2);  //Read the value, "%d" means is a integer&lt;br /&gt;    &lt;br /&gt;    result = num1 + num2; //Result = num1 plus num2&lt;br /&gt;    &lt;br /&gt;    printf("%d + %d eh %d", num1, num2, result); //Write the value of these variables&lt;br /&gt;    &lt;br /&gt;    printf("\n\n");&lt;br /&gt;    system("pause");&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2050784706218741556-5431268385661008474?l=alexjilas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://alexjilas.blogspot.com/feeds/5431268385661008474/comments/default' title='Postar comentários'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2050784706218741556&amp;postID=5431268385661008474' title='0 Comentários'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2050784706218741556/posts/default/5431268385661008474'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2050784706218741556/posts/default/5431268385661008474'/><link rel='alternate' type='text/html' href='http://alexjilas.blogspot.com/2008/10/adding-number-using-c-language.html' title='C language - Adding 2 numbers'/><author><name>Alex Jilas</name><uri>http://www.blogger.com/profile/15879695874477555172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2050784706218741556.post-8494956199060354213</id><published>2008-10-14T16:52:00.000-07:00</published><updated>2008-10-21T03:19:52.657-07:00</updated><title type='text'>C Language - Hello World</title><content type='html'>Today is our first program written by Alex Jilas :) and please take a look.&lt;br /&gt;&lt;br /&gt;#include &lt; stdio.h&gt; //It's necessary to include this header to use "printf" instruction&lt;br /&gt;&lt;br /&gt;#include &lt; stdlib.h&gt; //We're using this header because of system("pause") instruction&lt;br /&gt;&lt;br /&gt;int main() //Main function (we're going to talk about later)&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;printf("Hello World :) "); //write "Hello world" in the screen&lt;br /&gt;&lt;br /&gt;system("pause");   //Wait for something&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;If you don't use the system("pause") function you're not going to see the phrase you wrote before, in this case "Hello World", compile this code and then compile it again without the system("pause") and notice the difference.&lt;br /&gt;&lt;br /&gt;That's all for today!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2050784706218741556-8494956199060354213?l=alexjilas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://alexjilas.blogspot.com/feeds/8494956199060354213/comments/default' title='Postar comentários'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2050784706218741556&amp;postID=8494956199060354213' title='0 Comentários'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2050784706218741556/posts/default/8494956199060354213'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2050784706218741556/posts/default/8494956199060354213'/><link rel='alternate' type='text/html' href='http://alexjilas.blogspot.com/2008/10/c-language.html' title='C Language - Hello World'/><author><name>Alex Jilas</name><uri>http://www.blogger.com/profile/15879695874477555172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2050784706218741556.post-1424178838871979358</id><published>2008-10-11T06:19:00.000-07:00</published><updated>2008-10-11T09:17:04.581-07:00</updated><title type='text'>English Learning</title><content type='html'>Today is the first post of the blog, I hope you enjoy it.&lt;br /&gt;&lt;br /&gt;I've been thinking about why brazilians speak english so slowly and don't speak as well as native speakers, of course native speakers have been speaking english since they were children but there's another thing, brazilians usually say: "I'd like to study there, School X is the best", how do you say that about a school if you don't know it ?&lt;br /&gt;&lt;br /&gt;Actually I don't have any problems with english schools :)&lt;br /&gt;&lt;br /&gt;Most students study one or two hours a week in a english school, and when they get home they don't study anything, sometimes we need to re-think our concepts, Who has been making mistakes ?&lt;br /&gt;&lt;br /&gt;Students or English schools ?&lt;br /&gt;&lt;br /&gt;I don't know the exactly answer but I think if you really want to learn something you need to study english the correct way, most schools ignore it, you need to learn REAL ENGLISH.&lt;br /&gt;&lt;br /&gt;I'll stop it today but before I'll show you some expressions used by native speakers.&lt;br /&gt;&lt;br /&gt;Please take a look:&lt;br /&gt;&lt;br /&gt;gimme - Give me&lt;br /&gt;Example: gimme the butter please (Me dê a manteiga por favor)&lt;br /&gt;&lt;br /&gt;that's dope - excellent, great (slang)&lt;br /&gt;Example: That's dope! I'll get some e-mails today&lt;br /&gt;&lt;br /&gt;gotcha  - I got you&lt;br /&gt;Example: gotcha, don't try to lie, I found out everything (te peguei, não tente mentir eu descobri tudo)&lt;br /&gt;&lt;br /&gt;Whaddup - what's up (informal way to greet)&lt;br /&gt;Example: hey whatddup alex ? (E ae Alex ? Que que tá rolando ?)&lt;br /&gt;&lt;br /&gt;lemme - let me&lt;br /&gt;example: lemme try to help you, I got some medicines here (Me deixe ajudá-lo, tenho alguns remédios aqui)&lt;br /&gt;&lt;br /&gt;buddies  - guys, friends&lt;br /&gt;example: hey, our buddies are you over there, they just got home (Nossos camaradas estão logo ali, eles acabaram de chegar em casa)&lt;br /&gt;&lt;br /&gt;This is enough for today.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2050784706218741556-1424178838871979358?l=alexjilas.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://alexjilas.blogspot.com/feeds/1424178838871979358/comments/default' title='Postar comentários'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2050784706218741556&amp;postID=1424178838871979358' title='0 Comentários'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2050784706218741556/posts/default/1424178838871979358'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2050784706218741556/posts/default/1424178838871979358'/><link rel='alternate' type='text/html' href='http://alexjilas.blogspot.com/2008/10/english-learning.html' title='English Learning'/><author><name>Alex Jilas</name><uri>http://www.blogger.com/profile/15879695874477555172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
