Can math operations be performed on a void pointer?


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

Post New Answer

More C Interview Questions

C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

6 Answers   TCS, Wipro,


what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;

2 Answers   Google,


Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014  Npu university

0 Answers  


How do we make a global variable accessible across files? Explain the extern keyword?

0 Answers  


What is %lu in c?

0 Answers  






Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given

0 Answers   XYZ,


What are c identifiers?

0 Answers  


Why doesnt the call scanf work?

0 Answers  


How pointer is different from array?

0 Answers  


What are the 4 data types?

0 Answers  


When should we use pointers in a c program?

0 Answers  


There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.

1 Answers   HCL, iGate,


Categories