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 is time null in c?
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
What are the languages are portable and platform independent?Why they are like that?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Output for following program using for loop only * * * * * * * * * * * * * * *
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
What is meant by keywords in c?
can we have joblib in a proc ?
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
how to do in place reversal of a linked list(singly or doubly)?
i=10,j=20 j=i,j?(i,j)?i:j:j print i,j
Can we change the value of static variable in c?