say the following declaration is correct nr not.
int b=a,n=0;
Answers were Sorted based on User's Feedback
Answer / nishant kumar
it's wrong as u are asigning 'a' to 'b' without declaring its data type..
| Is This Answer Correct ? | 3 Yes | 0 No |
How does struct work in c?
Disadvantages of C language.
Explain how do you generate random numbers in c?
difference between the array and linked list general difference related to memory
Convert the following expression to postfix and prefix (A+B) * (D-C)
How to implement call back functions ?
When can a far pointer be used?
can we write a program in c for printf and scanf without using header file stdio.h
Why do we use main function?
Given an unsigned integer, find if the number is power of 2?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
How pointer is benefit for design a data structure algorithm?