How can I make sure that my program is the only one accessing a file?
No Answer is Posted For this Question
Be the First to Post Answer
What are pragmas and what are they good for?
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
What is malloc and calloc?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
Difference between exit() and _exit() function?
Give the rules for variable declaration?
write a program to print %d ?
write a c program to check weather a particluar bit is set or not?
What type of function is main ()?
What's the difference between calloc() and malloc()?
What is static and volatile in c?