Differentiate between declaring a variable and defining a variable?
No Answer is Posted For this Question
Be the First to Post Answer
What is the correct declaration of main?
question-how to run a c programme.
Why c is called a mid level programming language?
Is a house a shell structure?
What is a method in c?
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
Explain what is the benefit of using #define to declare a constant?
What is sizeof int?
What is the use of header?
What is c method?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }