+ 2
Where can I get more good resources???
where can I learn more beside sololearn?..I think it's quite good..But i need more good resources .. Can you guys help me please ? T.I.A
9 Answers
+ 13
w3schools is great
+ 3
Good resources for CSS
Mitali's Youtoube Chanel
https://www.youtube.com/channel/UC15exV5s79D_aYGADudlwpQ
+ 2
learn.css youtube channel is great for learning but problem is that you run that channel so you know everything, next option is soloLearn but you are expert in it too, then comes Stepik app, youtube tutorials, stack overflow, w3schools, freecodecamp if you prefer paid learning too then you can try joining coding bootcamps, paid online courses, like : udemy, coursera or you can join coding tuitions which is not that dynamic according to time table of average people. So prefer online courses first then if you want then you can join bootcamps or tuitions. Best of luck. š
+ 1
thanks Alcatraz
+ 1
//program for find a factorial of a number.
#include<stdio.h>
#include<conio.h>
void main() {
int i,n,f=1;
clrscr();
printf("enter a number.");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
f*=i;
}
printf("factorial of a given number is:%d=%d",n,f);
getch();
}
if you like this program.
please follow me guys.
0
how can I get an image value in pixels like in the power puff girls bubbles code to create a full image by division?
0
You can google whichever language you want tutorials for and the results will show up some good sites and youtube channels.