Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~4K People Reached
Favorite Tags

6 Posted Topics

Member Avatar for goutham_see

can anyone give me a detailed importance of sun certificate for java programmer??? What about the job oppurtunities for the person certified??

Member Avatar for jwenting
0
166
Member Avatar for stringgader

TRY THIS OUT [code=c] #include<stdio.h> main() { int i,j,k; printf("\n"); for(i=1;i<=10;i++) { for(j=1;j<=31-i;j++)printf(" "); for(j=i,k=(2*i-1)/2+1;k;j++,k--) { if(j==10)j=0; printf("%d",j); } for(j-=2,k=(2*i-1)/2;k;j--,k--) { if(j==-1)j=9; printf("%d",j); } printf("\n"); } }[/code]

Member Avatar for stringgader
0
306
Member Avatar for atilla

This is a simple problem. U have to specify path to include header files. Here is the way to do it. Open ur program window. click options at the top. click directories. In include directories u have to specify path. suppose ur tc(compiler) folder is in c drive. then path …

Member Avatar for goutham_see
0
468
Member Avatar for bigben09

[code=c] #include "stdafx.h" #include <iostream> #include <ctype.h> #include <fstream> #include <string> using namespace std; int reverseDigit, integer, reverse; int main() { string integer; int cntr,f=1; cout <<"Please input an integer: "; cin >> integer; cntr = integer.size(); cntr--; cout <<"reverse = "; if (integer [0] == '-') { cout << …

Member Avatar for John A
0
133
Member Avatar for srinath33

[code=c] /* This program is for checking a single integer*/ #include<stdio.h> #include<stdlib.h> main() { int a,i; printf("\nEnter a positive integer\n"); scanf("%d",&a); if(a<=0) { printf("\nInvalid input\n"); exit(1); } for(i=2;i<=a-1;i++) if(a%i==0)break; if(i==a)printf("\n%d is prime\n",a); else printf("\n%d is not a prime\n",a); } /* This is for elements in an array*/ #include<stdio.h> #include<stdlib.h> #define …

Member Avatar for goutham_see
0
3K
Member Avatar for himanjim

Hi friend. This is goutham from India. Ur doubt is that why is char range -128 in the negative side. The most significant bit is sign bit. So the bits available for storing magnitude is 7. If sign bit is 0,the number is positive and the magnitude is stored in …

Member Avatar for Ancient Dragon
0
267

The End.