What is #define size in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
What is a function in c?
Can you think of a logic behind the game minesweeper.
What is variable in c with example?
What does. int *x[](); means ?
Difference between pass by reference and pass by value?
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
How to avoid buffer overflow?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
Can an array be an Ivalue?
how to write a bubble sort program without using temporary variable?