C
In computing, C is a general-purpose, block structured, procedural, imperative computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system.
Application
Any
Platform
Any
License
Any
this is simple:
*p is the value of pointer p
++x means x=x+1
*p+=++x equivalent to *p=*p+++x or *p=*p+x+1
_______________________________
смотреть фильмы онлайн| employment /...
I get this runtime error
** Gdk **: _gdk_drawable_get_source_drawable: assertion `GDK_IS_DRAWABLE (drawable)' failed
I passed a GtkWindow to gdk_gc_new(drawable). I know this because of the...
I just forgot to link the math library...sorry.
Hi guys
I am looking at the following array:
int intarr = {{1,2},{3,4}};
When having initialized this, then what is the difference between
intarr + 1
&intarr + 1
&intarr + 2
I know...
Automation electronics
john 85 79
Sam 71 85
Clinton 50 65
Harry 89 77
Tom 74 69
When 1 is pressed it displays the name and...
so, the answer is 14?
what is the meaning of *p?
(int *p) = p is a pointer to an integer. Rite?
Then, now the answer is 7, your explained is well, i can understand.
But, how become 7+7=14?...
: int x = 6, *p;
/**
Address p is pointed to x
**/
: p = &x;
/**
First, find out what value is on the right side of
the expression:
++x - first, increment x and THEN USE it in...
Explain the steps of determining the value of ‘x’ after the execution of the last line of the code shown below.
int x = 6, *p;
p = &x;
*p += ++x;
What is this????????
Tq...
wap a c++ program that takes input of 5 digit integer from user and prints each digit seperated from each other with three spaces each
(0-36).
hope u help me out in coding it in c/c++??!!.
Yeh thats the thing, as i am not currently working i cannot afford to take a course however i am now studying the book and some other net info such as learncpp.com which has some great tutorials. So...
Fantastic, thanks for that.
Hi,
the first one is for the SPACE HASTE 2 full MSVC source code:
note: for this one you can download the game contents from game demo from GameSpot.com just search space haste 2.
http://www...
I'm not really up to speed with the Win32 API, but I *think* you can make something work if your up for a challenge. :P
Credit goes to Ed Hall - try these two threads here and here
Good...
Hello,
I have just started to learn to use C++ and as I am going thought the beginner tutorials I thought of a neat project that I would like some help with.
Basically what I would like to do...
Can you post the full error message? Try to create a simple project, like:
#include
int main ()
{
double a = 5.9348873;
double b = sqrt (a);
return 0;
}
That also does not...
I think it's fair to get a good book which has passing reviews...
If you are doing this for hobby/fun, I'd say just teach yourself. There really is a bunch of information on getting to programming...
Hey guys, It's been a million years since I touched here. I'm 20 now, and I kind of want to go back to what I used to do for fun when I was 15 or so.
Anyway, I have a very simple problem, even...