Explain what is the difference between declaring a variable and defining a variable?
Answer / ss
Declaring variable means
Eg- int a;
Defining variable means we are giving some integer value to that a variable
Eg- a=100;
| Is This Answer Correct ? | 0 Yes | 0 No |
What are lookup tables in c?
how to print this pyramid * * * * * * * * * * * * *
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What is self-referential structure in c programming?
Explain 'bus error'?
how to swap two integers 1 and 32767 without using third variable
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
What is assignment operator?
what is inline function?
how to find the size of the data type like int,float without using the sizeof operator?
what is difference between C and C++
What is a far pointer?What is the utility?