#include<stdio.h> #define PRODUCT(n) n*n void main() { int a; a=64/PRODUCT(4); printf("%d",a); } On compiling above program my gcc compiler gives OUTPUT: 64Which is wrong output it should be 4 according to definition.Why it is not considering PRODUCT (4) ?(QUESTION: B.TECH FIRST YEAR RCS-101 AKTU 2017-18)
Hey can any one give suitable example that explain bout Pointer of Function , which explain Pointer with UDF ( User Define Function ) alogn with pass by value and pass by reference in a single program.thanking your hope with quick reply
As CBSE has changed the computer science syllabus from C++ to Python, so is C++ still relevant for school students?
alternate to pointers in Cpp
Can you please explain pointers in detail
Whether pointer is defined by its own address or it stores only memory address ?
980 visits
Outline:پوائنٹرس کو سمجھنا تعارُف پوائنٹر کا سِنٹیکس int *iptr; مثلاََ ڈِکلِریشن int a;مثلاََ (integer a) int *aptr; ( int *aptr; ایک اِنٹجر کیلئے پوائنٹر ) aptr = &a; (aptr کے ایڈریس پر مُتیعن a) ایڈریس پوائنٹر
پوائنٹرس کو سمجھنا تعارُف پوائنٹر کا سِنٹیکس int *iptr; مثلاََ ڈِکلِریشن int a;مثلاََ (integer a) int *aptr; ( int *aptr; ایک اِنٹجر کیلئے پوائنٹر ) aptr = &a; (aptr کے ایڈریس پر مُتیعن a) ایڈریس پوائنٹر
Show video info
Pre-requisite