C programming language?
Moderators: Moderators, Junior Moderators
Forum rules
This General Forum is for general discussions from daily chitchat to more serious discussions among Somalinet Forums members. Please do not use it as your Personal Message center (PM). If you want to contact a particular person or a group of people, please use the PM feature. If you want to contact the moderators, pls PM them. If you insist leaving a public message for the mods or other members, it will be deleted.
This General Forum is for general discussions from daily chitchat to more serious discussions among Somalinet Forums members. Please do not use it as your Personal Message center (PM). If you want to contact a particular person or a group of people, please use the PM feature. If you want to contact the moderators, pls PM them. If you insist leaving a public message for the mods or other members, it will be deleted.
C programming language?
Anyone out there who know this language? It is actually going to drive me bonkers.
-
- SomaliNet Super
- Posts: 30687
- Joined: Tue Sep 01, 2009 10:32 am
- Location: Darul Kufr
- Contact:
Re: C programming language?
i only know C++ not C
Re: C programming language?
$25 an hour you may hire me 

- SultanOrder
- Posts: 21697
- Joined: Thu Mar 26, 2009 10:10 pm
- Location: Peace!
Re: C programming language?
I'm learning systems management part time with linux servers, with my brother.
Re: C programming language?
C++ is an object oriented programming language which is more complex and advanced then C,so,I am amazed at you know C++ but not C?? Am i missing something here.grandpakhalif wrote:i only know C++ not C
Walahi,programming is not that complicated but it will come as an eletrical shock to you when you see it for the first time that is basically what is happening to me.
So far,waxaan qaadanaay.
hello world
constant &variables
loops,the while loop,for loop and the do while loop.
decision-king,if and else if.
dawwa
isnt that cheap??
-
- SomaliNet Super
- Posts: 30687
- Joined: Tue Sep 01, 2009 10:32 am
- Location: Darul Kufr
- Contact:
Re: C programming language?
who finds helloworld difficult?Addoow wrote:C++ is an object oriented programming language which is more complex and advanced then C,so,I am amazed at you know C++ but not C?? Am i missing something here.grandpakhalif wrote:i only know C++ not C
Walahi,programming is not that complicated but it will come as an eletrical shock to you when you see it for the first time that is basically what is happening to me.
So far,waxaan qaadanaay.
hello world
constant &variables
loops,the while loop,for loop and the do while loop.
decision-king,if and else if.
dawwa
isnt that cheap??




Re: C programming language?


hello world is the first programming lesson you take,it is easy laakin the cocept of loops and decision making needs a bit of struggle to understand.
-
- SomaliNet Heavyweight
- Posts: 1891
- Joined: Thu Dec 13, 2007 4:28 pm
- Location: Bursaalax, Mudug & Bokh, Ogaden
Re: C programming language?
I never learned C, but I have done some C++ and Java programming before.
Re: C programming language?
You should explore Linux, a free operating system that provides various programming languages, compilers, tutorials, etc.Addoow wrote:Anyone out there who know this language? It is actually going to drive me bonkers.

-
- SomaliNet Super
- Posts: 5460
- Joined: Sat Sep 08, 2001 7:00 pm
- Location: General SNM, CaliGaab, Duceysane, Gashanle & all Duceysane supporters are rapists
- Contact:
Re: C programming language?
grandpakhalif wrote:who finds helloworld difficult?Addoow wrote:C++ is an object oriented programming language which is more complex and advanced then C,so,I am amazed at you know C++ but not C?? Am i missing something here.grandpakhalif wrote:i only know C++ not C
Walahi,programming is not that complicated but it will come as an eletrical shock to you when you see it for the first time that is basically what is happening to me.
So far,waxaan qaadanaay.
hello world
constant &variables
loops,the while loop,for loop and the do while loop.
decision-king,if and else if.
dawwa
isnt that cheap??![]()
![]()
![]()




-
- SomaliNet Super
- Posts: 5460
- Joined: Sat Sep 08, 2001 7:00 pm
- Location: General SNM, CaliGaab, Duceysane, Gashanle & all Duceysane supporters are rapists
- Contact:
Re: C programming language?
looooooooooooooolAddoow wrote:![]()
![]()
hello world is the first programming lesson you take,it is easy laakin the cocept of loops and decision making needs a bit of struggle to understand.
doqon yohow use printscreen function


the concept of loops is very simple you silly monkey - make the pseudocode to help you understand it. If you're struggling with the loops, how will you cope with the arrays and dynamic arrays



lol@heelo world
Re: C programming language?
foxy
waa maxey caydu? C programming is part of my course and i didnt talk about writing a particular program.but anyway,thanks for your input woman!.
waa maxey caydu? C programming is part of my course and i didnt talk about writing a particular program.but anyway,thanks for your input woman!.
- IRONm@N
- SomaliNet Super
- Posts: 5122
- Joined: Tue May 01, 2001 7:00 pm
- Location: Jannatul-Fardowsa
- Contact:
Re: C programming language?
A simple C program
#include <stdio.h>
int main ()
int age;
charac addoow;
{
printf("hello Somalinet");
printf("what is your name?\n");
scanf("%c" &addoow);
do (adow == addoow || adoow !=adoow) {
while (adow <= addoow);
printf(" that is a good name\n);
printf('what is your age\n");
scanf("%d" &age);
printf("you are old");
return 0;
}
#include <stdio.h>
int main ()
int age;
charac addoow;
{
printf("hello Somalinet");
printf("what is your name?\n");
scanf("%c" &addoow);
do (adow == addoow || adoow !=adoow) {
while (adow <= addoow);
printf(" that is a good name\n);
printf('what is your age\n");
scanf("%d" &age);
printf("you are old");
return 0;
}
Last edited by IRONm@N on Thu Apr 01, 2010 1:42 pm, edited 1 time in total.
Re: C programming language?
Nice try iron man.but you have messed up,since you declared addoow as a char ,you should use the format specifier %c and not %d because that is for integers.
This is a simple very basic program which allows the user to put two numbers as input and then calculates its product.lol
#include<stdio.h>
#include<conio.h>
int main(void)
{
int number1;
int number2;
int product;
printf("enter two numbers please");
scanf("%d%d",&number1,&number2);
product=number1*number2;
printf("their product is %d",product);
getch();
}
This is a simple very basic program which allows the user to put two numbers as input and then calculates its product.lol
#include<stdio.h>
#include<conio.h>
int main(void)
{
int number1;
int number2;
int product;
printf("enter two numbers please");
scanf("%d%d",&number1,&number2);
product=number1*number2;
printf("their product is %d",product);
getch();
}
- IRONm@N
- SomaliNet Super
- Posts: 5122
- Joined: Tue May 01, 2001 7:00 pm
- Location: Jannatul-Fardowsa
- Contact:
Re: C programming language?
good eyes, i was just writing crazy stuff, but I made the corrections. great algorithm on the numbers.Addoow wrote:Nice try iron man.but you have messed up,since you declared addoow as a char ,you should use the format specifier %c and not %d because that is for integers.
This is a simple very basic program which allows the user to put two numbers as input and then calculates its product.lol
#include<stdio.h>
#include<conio.h>
int main(void)
{
int number1;
int number2;
int product;
printf("enter two numbers please");
scanf("%d%d",&number1,&number2);
product=number1*number2;
printf("their product is %d",product);
getch();
}
do you ever did 2D and 3D drawing on C yet?
its fun, try openGL, it will even be harder then this easy algorithms.
you getta get all the points and vertices.
-
- Similar Topics
- Replies
- Views
- Last post
-
- 22 Replies
- 2714 Views
-
Last post by Password
-
- 2 Replies
- 327 Views
-
Last post by Methylamine
-
- 6 Replies
- 1180 Views
-
Last post by AbdiWahab252
-
- 8 Replies
- 1175 Views
-
Last post by Militant
-
- 1 Replies
- 272 Views
-
Last post by Nolol cusub
-
- 8 Replies
- 4827 Views
-
Last post by tightrope
-
- 20 Replies
- 2891 Views
-
Last post by abdalla11
-
- 0 Replies
- 516 Views
-
Last post by Rightwing
-
- 5 Replies
- 500 Views
-
Last post by BVSNet
-
- 9 Replies
- 9138 Views
-
Last post by LobsterUnit