regarding pointers concept


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

0 Answers  


write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?

5 Answers   HCL,


# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none

7 Answers   Microsoft, TCS,


How can my program discover the complete pathname to the executable from which it was invoked?

0 Answers  


What is function in c with example?

0 Answers  






What is build process in c?

0 Answers  


What is s in c?

0 Answers  


Is exit(status) truly equivalent to returning the same status from main?

0 Answers  


Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers

1 Answers  


difference between c and c++?

2 Answers  


Differentiate between the expression “++a” and “a++”?

0 Answers  


What is a structural principle?

0 Answers  


Categories