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
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
What are enums in c?
Why c is a procedural language?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
How do I determine whether a character is numeric, alphabetic, and so on?
What is a volatile keyword in c?
how can i print "hello"
What is switch in c?
The statement, int(*x[]) () what does in indicate?
implement OR gate without using any bitwise operator.
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC