Explain how do you determine a file’s attributes?
can you explain in brief what is "r+" mode in a file... i know that it si used to read and modify rhe existing content.... but explalanation about the file pointer in "r+" mode i wann to know???????????
Write a program to swap two numbers without using a temporary variable?
How many main () function we can have in a project?
suppose there are five integers write a program to find larger among them without using if- else
What's a "sequence point"?
What are the rules for the identifier?
How is a macro different from a function?
What is structure in c definition?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
How do you initialize function pointers? Give an example?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +