What is the use of volatile?
No Answer is Posted For this Question
Be the First to Post Answer
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
Is c is a low level language?
What is the difference between i++ and i+1 ?(in terms of memory)
Difference between data structure and data base.
7 Answers CTS, Value Labs, Zoho,
What are loops c?
How can you call a function, given its name as a string?
How do you search data in a data file using random access method?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?