Explain how can I prevent another program from modifying part of a file that I am modifying?
No Answer is Posted For this Question
Be the First to Post Answer
Explain data types & how many data types supported by c?
write a program to find the frequency of a number
every function has return the value?
Why isn't it being handled properly?
What are valid operations on pointers?
write a program to copy a string without using a string?
What is the use of pointers in C?
0 Answers Impetus, Motorola, Tavant Technologies, Virtusa,
What is floating point constants?
What has to put when we are inserting as assembly language code into the C code? or When we are inserting as assembly language code into the C code we have to insert one thing at the start and of the assembly language. What are they?
What is variable declaration and definition in c?
what is Structural oriented language? give some example of this language.....?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?