explain what are pointers?
No Answer is Posted For this Question
Be the First to Post Answer
in iso what are the common technological language?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What are the types of operators in c?
How can you allocate arrays or structures bigger than 64K?
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..