What is structure pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why is c still so popular?
What is the meaning of c in c language?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
Does sprintf put null character?
Describe the steps to insert data into a singly linked list.
what is the difference between normal variables and pointer variables..............
15 Answers HP, Infosys, Satyam, Vivekanand Education Society,
what is bitwise operator?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
actually i have 2 years teaching experience as computer faculty but now i am a DBA but when i go for interview many peoples asked me why i left my teaching profession and why i want to come in this field kindly give me the proper answer of this queston
Do you know the difference between exit() and _exit() function in c?
What is getch c?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value