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 |
What are the various types of control structures in programming?
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
Why is c not oop?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What is function pointer c?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
Can we change the value of static variable in c?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
What is a rvalue?
Do you have any idea about the use of "auto" keyword?
helllo sir give me some information of the basic information the c as printf ,scanf , %d ,%f and why is the main use of these.
What is the difference between array and pointer in c?