{"id":3926,"date":"2019-06-08T09:39:03","date_gmt":"2019-06-08T09:39:03","guid":{"rendered":"https:\/\/tutorialsclass.com\/?p=3926"},"modified":"2020-10-12T07:18:02","modified_gmt":"2020-10-12T07:18:02","slug":"c-pointers","status":"publish","type":"post","link":"https:\/\/tutorialsclass.com\/c-pointers\/","title":{"rendered":"C Pointers"},"content":{"rendered":"\n<p>C Pointers are the variables whose value is the address of another <a href=\"https:\/\/tutorialsclass.com\/c-variables\/\">variables<\/a>.<br><strong>Pointer Syntax : <\/strong><\/p>\n\n\n\n<p><code>data_type *var_name;<\/code><\/p>\n\n\n\n<p><strong>Example : <\/strong><\/p>\n\n\n\n<p><code>int *p; char *p;<\/code><\/p>\n\n\n\n<p>Here, * is used to denote that the pointer variable is not a normal variable.<\/p>\n\n\n\n<p>We can easily perform some C programming tasks with the help of C Pointers such as dynamic memory allocation, which cannot be performed without using pointers. So it becomes necessary to learn pointers to become a perfect C programmer. Let&#8217;s start learning them in simple and easy steps.<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Declaration of C Pointers:<\/h3>\n\n\n\n<p>The pointer in c language can be declared using * (asterisk symbol).<\/p>\n\n\n\n<p><code>int *variable_1; \/\/ pointer to int<br>char *variable_2; \/\/ pointer to char<br>float *variable_3; \/\/ pointer to float<\/code><\/p>\n\n\n\n<p><strong>A simple example of C Program using C Pointer:<\/strong><br>Here is the simple example of a pointer to find the address of variable.<\/p>\n\n\n\n<pre class=\"wp-block-code language-c\"><code>#include       \n int main()\n{      \nint x=10;  \nint *p; \n\/\/ &amp; symbol is used to get the address of the variable.     \np=&amp;number; \nprintf(\"Address of x variable is %d \\n\",&amp;number);  \nprintf(\"Address of x variable is %d \\n\",p);  \nprintf(\"Value of x variable is %d \\n\",*p);  \nreturn 0;      \n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">NULL Pointer<\/h3>\n\n\n\n<p>At the time of declaration, if we don&#8217;t have any address to be specified in the pointer then we can assign NULL value. When a pointer is not assigned any value, it is known as a NULL pointer.<br>A pointer that is not assigned any value but NULL is int *p=NULL;<br>In most of the libraries, the value of the pointer is 0 (zero).<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Some Important points about pointer:<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>We must declare a pointer before using it to store any variable address.<\/li><li>The pointer variable might be belonging to any of the data types such as int, float, char, double, short, etc.<\/li><li>A normal variable stores the value whereas pointer variable stores the address of the variable.<\/li><li>Value of C pointer (address) always is a whole number.<\/li><li>Firstly, C pointer is initialized to null always, i.e. int *p = null. The value of the null pointer is 0. If a pointer in C is assigned to NULL, it means it is pointing to nothing.<\/li><li> symbol is used to get the value of the variable that the pointer is pointing to. <\/li><li>Two pointers can be subtracted to know how many elements are available between these two pointers. But, Pointer addition, multiplication, division are not allowed.<\/li><li>The size of any pointer is 2 byte (for the 16-bit compiler).<\/li><\/ul>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">C Pointer to Pointer<\/h3>\n\n\n\n<p>With the help of pointer to pointer variable, we can store the address of a pointer variable. This address point to the value of a variable.<br><strong>General Format of the pointer to pointer variable:<\/strong><\/p>\n\n\n\n<p><code>data_type **p2;<\/code><\/p>\n\n\n\n<p><strong>Example of pointer to pointer variable:<\/strong><br>Let&#8217;s see the example of a pointer to pointer variable. In this example, we have assigned a value in the variable. We have defined the pointer variable, which stores the address of that variable. We have also defined a pointer to pointer variable which stores the address of the pointer variable(value of the variable).<\/p>\n\n\n\n<pre class=\"wp-block-code language-c\"><code>#include         \nint main()\n{        \nint variable=100;    \nint *p1;\/\/pointer to int  \nint **p2;\/\/pointer to pointer      \n    \np1=&amp;variable;\/\/stores the address of x variable    \np2=&amp;p1;  \n        \nprintf(\"Address of x variable is %d \\n\",&amp;variable);    \nprintf(\"Address of p variable is %d \\n\",p1);    \nprintf(\"Value of *p variable is %d \\n\",*p1);    \nprintf(\"Address of p2 variable is %d \\n\",p2);    \nprintf(\"Value of **p2 variable is %d \\n\",**p1);    \n    \nreturn 0;       \n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">C Pointer Arithmetic<\/h3>\n\n\n\n<p>C Pointer holds the address of a value. That&#8217;s why we can perform some <a href=\"https:\/\/tutorialsclass.com\/c-operators\/\">arithmetic operations<\/a> on the pointer variable. Here is the list of commonly used C Pointer Arithmetic :<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Increment<\/li><li>Decrement<\/li><li>Addition<\/li><li>Subtraction<\/li><li>Comparison<\/li><\/ul>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Examples of C Pointers Arithmetic:<\/h3>\n\n\n\n<p><strong>Addition of pointer:<\/strong><\/p>\n\n\n\n<p>Let&#8217;s see an example of adding some value in a pointer-type variable.<br>Description:<br>We have assigned some value in a variable, while the address is stored in a pointer-type variable. Then we have added some value in the pointer-type variable.<\/p>\n\n\n\n<pre class=\"wp-block-code language-c\"><code>#include         \nint main()\n{          \nint variable=10;      \nint *pointer; \/\/ pointer to int    \npointer=&amp;variable; \/\/ stores the address of number variable      \nprintf(\"Address of pointer variable is %u \\n\",pointer);  \npointer=pointer+45;     \nprintf(\"\\nAfter adding 10 in pointer value of x=%d \\n\",pointer); \nreturn 0;\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p><strong>Subtraction of pointer:<\/strong><\/p>\n\n\n\n<p>Let&#8217;s see an example of subtracting some value from a pointer-type variable.<br>Description:<br>We have assigned some value in a variable, while the address is stored in a pointer-type variable. Then we have subtracted some value from the pointer-type variable.<\/p>\n\n\n\n<pre class=\"wp-block-code language-c\"><code>#include         \nint main()\n{          \nint variable=10;      \nint *pointer; \/\/ pointer to int    \npointer=&amp;variable; \/\/ stores the address of number variable      \nprintf(\"Address of pointer variable is %u \\n\",pointer);  \npointer=pointer-5;\nprintf(\"\\nAfter subtracting 5 from pointer value of x=%d \\n\",pointer); \nreturn 0;\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p><strong>Increment of pointer:<\/strong><\/p>\n\n\n\n<p>Let&#8217;s see an example of increment in the value of a pointer-type variable.<br><em>Description:<\/em><br>We have assigned some value in a variable, while we have stored their address in a pointer-type variable. Then we have done the pre-increment in the value of a pointer-type variable.<\/p>\n\n\n\n<pre class=\"wp-block-code language-c\"><code>#include         \nint main()\n{          \nint variable=10;      \nint *pointer; \/\/ pointer to int    \npointer=&amp;variable; \/\/ stores the address of number variable      \nprintf(\"Address of pointer variable is %u \\n\",pointer);  \npointer=++pointer;\nprintf(\"\\nAfter increment value of pointer variable is=%d \\n\",pointer); \nreturn 0;\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p><strong>Decrement of pointer:<\/strong><\/p>\n\n\n\n<p>Let&#8217;s see an example of decrement in the value of a pointer-type variable.<br>Description:<br>We have assigned some value in a variable, while we have stored their address in a pointer-type variable. Then we have done the pre-decrement in the value of a pointer-type variable.<\/p>\n\n\n\n<pre class=\"wp-block-code language-c\"><code>#include&lt;stdio.h>         \nint main()\n{          \nint variable=10;      \nint *pointer; \/\/ pointer to int    \npointer=&amp;amp;variable; \/\/ stores the address of number variable      \nprintf(\"Address of pointer variable is %u \\n\",pointer);  \npointer=--pointer;\nprintf(\"\\nAfter decrement value of pointer variable is=%d \\n\",pointer); \nreturn 0;\n}<\/code><\/pre>\n\n\n\n<p>Let&#8217;s see an example of a comparison of two pointer-type variables.<br><strong>Description:<\/strong><br>We have assigned some value in two variables, while we have stored their address in two pointer-type variables. Then we have done the comparison between the two pointer-type variables.<\/p>\n\n\n\n<pre class=\"wp-block-code language-c\"><code>&lt;!-- wp:preformatted {\"className\":\"lang:c\"} -->\n&lt;pre class=\"wp-block-preformatted lang:c\">&lt;code>#include         \nint main()\n{          \nint variable_1=10;\nint variable_2=20;      \nint *pointer_1,*pointer_2;     \npointer_1=&amp;amp;variable_1; \npointer_2=&amp;amp;variable_2;\nif(pointer_1&amp;gt;pointer_2)\nprintf(\"address of variable 2 is greater than variable 1\");\nelse\nprintf(\"address of variable 1 is greater than variable 2\");\nreturn 0;\n}&lt;\/code>&lt;\/pre>\n&lt;!-- \/wp:preformatted -->\n\n&lt;!-- wp:separator -->\n&lt;hr class=\"wp-block-separator\"\/>\n&lt;!-- \/wp:separator --><\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>C Pointers are the variables whose value is the address of another variables.Pointer Syntax : data_type *var_name; Example : int *p; char *p; Here, * is used to denote that the pointer&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[14],"tags":[],"keywords":[],"class_list":["post-3926","post","type-post","status-publish","format-standard","hentry","category-c"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>C Pointers - Pointer Arithmatic &amp; Pointer to Pointer | Tutorials Class<\/title>\n<meta name=\"description\" content=\"C Pointers are the variables whose value is the address of the other variables. In this tutorial, learn about Pointer Arithmatic &amp; Pointer to Pointer also.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tutorialsclass.com\/c-pointers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C Pointers - Pointer Arithmatic &amp; Pointer to Pointer | Tutorials Class\" \/>\n<meta property=\"og:description\" content=\"C Pointers are the variables whose value is the address of the other variables. In this tutorial, learn about Pointer Arithmatic &amp; Pointer to Pointer also.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tutorialsclass.com\/c-pointers\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorials Class\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/tutorialsclass\" \/>\n<meta property=\"article:published_time\" content=\"2019-06-08T09:39:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-10-12T07:18:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tutorialsclass.com\/wp-content\/uploads\/2020\/07\/tutorials-class-logo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Tutorials Class\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@TutorialsClass\" \/>\n<meta name=\"twitter:site\" content=\"@TutorialsClass\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tutorials Class\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/tutorialsclass.com\/c-pointers\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/tutorialsclass.com\/c-pointers\/\"},\"author\":{\"name\":\"Tutorials Class\",\"@id\":\"https:\/\/tutorialsclass.com\/#\/schema\/person\/f7d4f67fc9721ef3ea91cb21aaf89e3e\"},\"headline\":\"C Pointers\",\"datePublished\":\"2019-06-08T09:39:03+00:00\",\"dateModified\":\"2020-10-12T07:18:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/tutorialsclass.com\/c-pointers\/\"},\"wordCount\":708,\"publisher\":{\"@id\":\"https:\/\/tutorialsclass.com\/#organization\"},\"articleSection\":[\"C Tutorial\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tutorialsclass.com\/c-pointers\/\",\"url\":\"https:\/\/tutorialsclass.com\/c-pointers\/\",\"name\":\"C Pointers - Pointer Arithmatic & Pointer to Pointer | Tutorials Class\",\"isPartOf\":{\"@id\":\"https:\/\/tutorialsclass.com\/#website\"},\"datePublished\":\"2019-06-08T09:39:03+00:00\",\"dateModified\":\"2020-10-12T07:18:02+00:00\",\"description\":\"C Pointers are the variables whose value is the address of the other variables. In this tutorial, learn about Pointer Arithmatic & Pointer to Pointer also.\",\"breadcrumb\":{\"@id\":\"https:\/\/tutorialsclass.com\/c-pointers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tutorialsclass.com\/c-pointers\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tutorialsclass.com\/c-pointers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tutorialsclass.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Learn\",\"item\":\"https:\/\/tutorialsclass.com\/learn\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"C Tutorial\",\"item\":\"https:\/\/tutorialsclass.com\/learn\/c\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"C Pointers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tutorialsclass.com\/#website\",\"url\":\"https:\/\/tutorialsclass.com\/\",\"name\":\"Tutorials Class\",\"description\":\"Online Tutorials for Beginners\",\"publisher\":{\"@id\":\"https:\/\/tutorialsclass.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tutorialsclass.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/tutorialsclass.com\/#organization\",\"name\":\"Tutorials Class\",\"url\":\"https:\/\/tutorialsclass.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorialsclass.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/tutorialsclass.com\/wp-content\/uploads\/2020\/05\/tutorials-class-logo.png\",\"contentUrl\":\"https:\/\/tutorialsclass.com\/wp-content\/uploads\/2020\/05\/tutorials-class-logo.png\",\"width\":442,\"height\":94,\"caption\":\"Tutorials Class\"},\"image\":{\"@id\":\"https:\/\/tutorialsclass.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/tutorialsclass\",\"https:\/\/x.com\/TutorialsClass\",\"https:\/\/in.pinterest.com\/merientinfotech\/boards\/\",\"https:\/\/www.youtube.com\/channel\/UCzbpQXlqec-bQf1_kwrTuoA\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/tutorialsclass.com\/#\/schema\/person\/f7d4f67fc9721ef3ea91cb21aaf89e3e\",\"name\":\"Tutorials Class\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorialsclass.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/346276d8e1600eec36df1bf9adcf78bf1eabb87fc0a79250e0565a88809b8f14?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/346276d8e1600eec36df1bf9adcf78bf1eabb87fc0a79250e0565a88809b8f14?s=96&d=mm&r=g\",\"caption\":\"Tutorials Class\"},\"sameAs\":[\"tcadmin\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C Pointers - Pointer Arithmatic & Pointer to Pointer | Tutorials Class","description":"C Pointers are the variables whose value is the address of the other variables. In this tutorial, learn about Pointer Arithmatic & Pointer to Pointer also.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/tutorialsclass.com\/c-pointers\/","og_locale":"en_US","og_type":"article","og_title":"C Pointers - Pointer Arithmatic & Pointer to Pointer | Tutorials Class","og_description":"C Pointers are the variables whose value is the address of the other variables. In this tutorial, learn about Pointer Arithmatic & Pointer to Pointer also.","og_url":"https:\/\/tutorialsclass.com\/c-pointers\/","og_site_name":"Tutorials Class","article_publisher":"https:\/\/www.facebook.com\/tutorialsclass","article_published_time":"2019-06-08T09:39:03+00:00","article_modified_time":"2020-10-12T07:18:02+00:00","og_image":[{"width":600,"height":600,"url":"https:\/\/tutorialsclass.com\/wp-content\/uploads\/2020\/07\/tutorials-class-logo.png","type":"image\/png"}],"author":"Tutorials Class","twitter_card":"summary_large_image","twitter_creator":"@TutorialsClass","twitter_site":"@TutorialsClass","twitter_misc":{"Written by":"Tutorials Class","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tutorialsclass.com\/c-pointers\/#article","isPartOf":{"@id":"https:\/\/tutorialsclass.com\/c-pointers\/"},"author":{"name":"Tutorials Class","@id":"https:\/\/tutorialsclass.com\/#\/schema\/person\/f7d4f67fc9721ef3ea91cb21aaf89e3e"},"headline":"C Pointers","datePublished":"2019-06-08T09:39:03+00:00","dateModified":"2020-10-12T07:18:02+00:00","mainEntityOfPage":{"@id":"https:\/\/tutorialsclass.com\/c-pointers\/"},"wordCount":708,"publisher":{"@id":"https:\/\/tutorialsclass.com\/#organization"},"articleSection":["C Tutorial"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/tutorialsclass.com\/c-pointers\/","url":"https:\/\/tutorialsclass.com\/c-pointers\/","name":"C Pointers - Pointer Arithmatic & Pointer to Pointer | Tutorials Class","isPartOf":{"@id":"https:\/\/tutorialsclass.com\/#website"},"datePublished":"2019-06-08T09:39:03+00:00","dateModified":"2020-10-12T07:18:02+00:00","description":"C Pointers are the variables whose value is the address of the other variables. In this tutorial, learn about Pointer Arithmatic & Pointer to Pointer also.","breadcrumb":{"@id":"https:\/\/tutorialsclass.com\/c-pointers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tutorialsclass.com\/c-pointers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/tutorialsclass.com\/c-pointers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tutorialsclass.com\/"},{"@type":"ListItem","position":2,"name":"Learn","item":"https:\/\/tutorialsclass.com\/learn\/"},{"@type":"ListItem","position":3,"name":"C Tutorial","item":"https:\/\/tutorialsclass.com\/learn\/c\/"},{"@type":"ListItem","position":4,"name":"C Pointers"}]},{"@type":"WebSite","@id":"https:\/\/tutorialsclass.com\/#website","url":"https:\/\/tutorialsclass.com\/","name":"Tutorials Class","description":"Online Tutorials for Beginners","publisher":{"@id":"https:\/\/tutorialsclass.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tutorialsclass.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/tutorialsclass.com\/#organization","name":"Tutorials Class","url":"https:\/\/tutorialsclass.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorialsclass.com\/#\/schema\/logo\/image\/","url":"https:\/\/tutorialsclass.com\/wp-content\/uploads\/2020\/05\/tutorials-class-logo.png","contentUrl":"https:\/\/tutorialsclass.com\/wp-content\/uploads\/2020\/05\/tutorials-class-logo.png","width":442,"height":94,"caption":"Tutorials Class"},"image":{"@id":"https:\/\/tutorialsclass.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/tutorialsclass","https:\/\/x.com\/TutorialsClass","https:\/\/in.pinterest.com\/merientinfotech\/boards\/","https:\/\/www.youtube.com\/channel\/UCzbpQXlqec-bQf1_kwrTuoA"]},{"@type":"Person","@id":"https:\/\/tutorialsclass.com\/#\/schema\/person\/f7d4f67fc9721ef3ea91cb21aaf89e3e","name":"Tutorials Class","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorialsclass.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/346276d8e1600eec36df1bf9adcf78bf1eabb87fc0a79250e0565a88809b8f14?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/346276d8e1600eec36df1bf9adcf78bf1eabb87fc0a79250e0565a88809b8f14?s=96&d=mm&r=g","caption":"Tutorials Class"},"sameAs":["tcadmin"]}]}},"_links":{"self":[{"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/posts\/3926","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/comments?post=3926"}],"version-history":[{"count":5,"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/posts\/3926\/revisions"}],"predecessor-version":[{"id":7026,"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/posts\/3926\/revisions\/7026"}],"wp:attachment":[{"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/media?parent=3926"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/categories?post=3926"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/tags?post=3926"},{"taxonomy":"keywords","embeddable":true,"href":"https:\/\/tutorialsclass.com\/wp-json\/wp\/v2\/keywords?post=3926"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}