What is void pointers in c?


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

Post New Answer

More C Interview Questions

Can static variables be declared in a header file?

0 Answers  


How can I implement sets or arrays of bits?

0 Answers  


Where static variables are stored in memory in c?

0 Answers  


how to find a 5th bit is set in c program

4 Answers   IBM,


advantages of pointers?

3 Answers  






main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }

6 Answers  


Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon

0 Answers   HCL,


what is an inline function?

2 Answers   TCS,


Explain data types & how many data types supported by c?

0 Answers  


4. main() { int c=- -2; printf("c=%d",c); }

0 Answers  


While(1) { } when this loop get terminate is it a infinite loop?

5 Answers  


Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4

2 Answers   Mascot,


Categories