Pointers arithmetic in C.
#include<stdio.h>
int main()
{
int a = 34;
int* ptra = &a;
printf("%d\n", ptra++);
printf("%d", ptra+1);
return 0;
}
OUTPUT:
6422296
6422304
🌍 Welcome to my digital realm of code and creativity! 🚀 Hey there, intrepid explorer of the virtual universe! I'm AATIFA MUGHEER, and I'm thrilled to welcome you to my corner of the internet where the languages of humans and computers collide in a symphony of innovation and artistry. 🎨💻 I've embarked on an exhilarating journey to unravel the secrets of C's elegance, the dance of HTML and CSS, and the magic of many other languages. So, Let's dive into the digital unknown together! 🌐🚀
#include<stdio.h>
Tysm
ReplyDeleteOsm
ReplyDelete