What is the difference between c and python?
what do u mean by Direct access files? then can u explain about Direct Access Files?
can we print any string in c language without using semicolon(;)(terminator) in whole program.
Can we compile a program without main() function?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
char *p="name"; printf(p);
What is the size of a union variable?
What would be an example of a structure analogous to structure c?
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
read a number & print all its devisors using c-program?
What does *p++ do?
How do I copy files?
Explain how do you override a defined macro?