What is identifier in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is an auto keyword in c?
What do you mean by team??
What are derived data types in c?
What is the difference between declaring a variable and defining a variable?
What is static and auto variables in c?
find the minimum of three values inputted by the user
what is the definition of storage classes?
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none
Explain what header files do I need in order to define the standard library functions I use?