Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
73% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
~7K People Reached
Favorite Tags
Member Avatar for Dani

As many of you know, DaniWeb was hit by a Google algorithm update back in November 2012 and we lost about 50% of our search traffic. In investigating the issue, I discovered that DaniWeb, in addition to most other programming forums out there, all lost their google traffic to [StackOverflow](http://www.stackoverflow.com). …

Member Avatar for j.khurram
11
5K
Member Avatar for sdtechi

TCP/IP works basically in four layers but sometimes it works in five layers.. WHY?

Member Avatar for JorgeM
0
273
Member Avatar for sdtechi

Is there any need to buy any seo software for indexing 2nd tier links. For example: Seo workers build thousands of Wiki links, blog comments, social media shares to 2nd tier links. Is it necessary to buy softwares and build those thousands link for indexing 2nd tier links or is …

Member Avatar for samjom
0
266
Member Avatar for sdtechi

#include<stdio.h> main() { int m1, m2, m3, m4, m5, per; printf("Enter marks in five subjects"); scanf("%d %d %d %d %d", &m1, &m2, &m3, &m4, &m5); per=(m1+m2+m3+m4+m5)/500*100; if(per>=60) printf("First division"); else{ if(per>=50) printf("Second division"); else{ if(per>=40) printf("Third division"); else printf("Fail"); } Enter marks in five subjects 100, 100, 10, 50, 60 …

Member Avatar for TalhaMoazSarwar
1
230
Member Avatar for sdtechi

I want to know, to be a link builder is there any need to invest in buying seo softwares? For example: Many seo package mentiod that to index 2nd tier links they will make thousands or wiki links, blog comments, and social media share to those 2nd tier links.

Member Avatar for samyakonline
0
919
Member Avatar for leoaxumi
Member Avatar for sdtechi

#include<stdio.h> int factorial (int); void main() { int a,fact; printf("\nEnter a value:"); scanf("%d", &a); fact= factorial(a); printf("Factorial value=%d", fact); } int factorial (int x) { int f=1,i; for(i=x;i>=1;i--) f=f*i; return(f); } Enter any number: 3 Factorial value = 6 But i did not undartand this program. Mostly in the loop …

Member Avatar for Santanu.Das
0
144
Member Avatar for sdtechi

#include<stdio.h> #include<conio.h> void main() { textbackground(BLUE); textcolor(WHITE); clrscr(); gotoxy(30,9); printf("Welcome to"); gotoxy(30,10); printf("Program2Do"); getch(); } It is a simple color chnaging C program. I had run it on Codeblock. But got error in this line: textbackground(BLUE);

Member Avatar for iamthwee
0
196