We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- C
- Introduction
- Pointers in C
- Discussions
Pointers in C
Pointers in C
Sort by
recency
|
697 Discussions
|
Please Login in order to post a comment
This explanation of pointers in C does a fantastic job of breaking down one of the most important — yet often confusing — concepts in programming. Funinexchange ID Login
t456
C is a timeless, powerful language—lightweight and close to the metal, perfect for building fast, portable systems-level software; mastering it gives you a solid foundation for how computers really work. t20 exchange registration
include
void update(int *a,int *b) { int sum = *a + *b; int diff = *a - *b; if(diff < 0){ diff = -diff; } *a = sum; *b = diff;
}
int main() { int a, b; int *pa = &a, *pb = &b;
}