Forum: IT Professionals' Lounge Mar 13th, 2007 |
| Replies: 2 Views: 2,329 can anyone give me a detailed importance of sun certificate for java programmer???
What about the job oppurtunities for the person certified?? |
Forum: C Mar 5th, 2007 |
| Replies: 10 Views: 3,589 TRY THIS OUT
#include<stdio.h>
main()
{
int i,j,k;
printf("\n");
for(i=1;i<=10;i++)
{ |
Forum: C Feb 22nd, 2007 |
| Replies: 6 Views: 3,929 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... |
Forum: C++ Feb 21st, 2007 |
| Replies: 7 Views: 1,219 #include "stdafx.h"
#include <iostream>
#include <ctype.h>
#include <fstream>
#include <string>
using namespace std;
int reverseDigit, integer, reverse;
int main()
{ |
Forum: C Feb 21st, 2007 |
| Replies: 7 Views: 4,722 /* 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)
{ |
Forum: Software Development Job Offers Feb 18th, 2007 |
| Replies: 6 Views: 2,103 Sir,
I am Goutham from India. I am a student engineer in electronics and communication engineering. I am a serious enthusiast in c-programming.Can i get an oppurtunity to work with you sir. |
Forum: C++ Feb 18th, 2007 |
| Replies: 15 Views: 7,933 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... |