November 4th, 2012 04:21 AM
What's the difference between Proxy server and ordinary server?
and Difference between Proxy server and firewall?
What i have to say and how i can clarify , through interview point? PLS HELP.
...
November 4th, 2012 12:04 AM
What's the difference between Proxy server and ordinary server?
and Difference between Proxy server and firewall?
What i have to say and how i can clarify , through interview point? PLS HELP.
...
October 18th, 2012 05:56 AM
void main()
{
int i;
for(i = 0; i <= 10; ++i);
printf("%d ", i);
}
In the above program , we are pre-incrementing i, even though the output is 1-10 , which is the case for post...
October 15th, 2012 06:20 AM
#include <stdio.h>
void main()
{
int x = 10 ;
3 = x;
}
October 15th, 2012 06:14 AM
How to create a new thread , PLEASE HELP ME!!!
March 20th, 2012 06:38 AM
int main()
{
int* ptr;
int n, i;
printf("How many numbers you want to enter: -");
scanf("%d", &n);
if((ptr = (int*)malloc(n * sizeof(int))) == 0)/// if we skip this statement??
February 17th, 2012 02:49 AM
Thx , now i got it.... I am unable to What is the use of Function Pointers in C and C++language?.
February 16th, 2012 11:32 PM
But. if we write:
void main()
{
int x = 10;
const int*ptr = &x;
x = 12;
February 16th, 2012 11:15 PM
I am unable to get this:
as we say int const*ptr; means ptr is a pointer to an const int.
In a example:
int x = 10;
int const*ptr = &x;
//Here *ptr = 12// will give error...
February 16th, 2012 11:12 PM
I am unable to get this:
as we say int const*ptr; means ptr is a pointer to an const int.
In a example:
int x = 10;
int const*ptr = &x;
//Here *ptr = 12// will give error...