Difference between linking and loading?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Explain following declaration int *P(void); and int (*p)(char *a);
What does 1f stand for?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
can we define a function in structure?
Explain what is the best way to comment out a section of code that contains comments?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
can a union be self-referenced?
How is a structure member accessed?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
how to find sum of 5 digits in C?
what is diff b/w huge & far & near pointer??