Why do we need volatile in c?
No Answer is Posted For this Question
Be the First to Post Answer
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
What are the different categories of functions in c?
Write a code of a general series where the next element is the sum of last k terms.
a simple program in c language
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?
write a program in c to read array check element is present or not?
why return type of main is not necessary in linux
What is meant by inheritance?
WHAT IS INT?
What is null pointer constant?
Explain what are the standard predefined macros?
What is the method to save data in stack data structure type?