What does volatile do?
No Answer is Posted For this Question
Be the First to Post Answer
explain what is fifo?
Why n++ execute faster than n+1 ?
Explain the difference between structs and unions in c?
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
When should the const modifier be used?
What is #define size in c?
How will you find a duplicate number in a array without negating the nos ?
In C language what is a 'dangling pointer'?
how can we Declare a variable in c without defining it.
Where are c variables stored in memory?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"