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 |
Tell me can the size of an array be declared at runtime?
What is use of bit field?
Explain the difference between malloc() and calloc() in c?
What is Full Form of C and Why We use C
write a “Hello World” program in “c” without using a semicolon?
There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(“%d”,x); }
in malloc and calloc which one is fast and why?
What does the characters “r” and “w” mean when writing programs that will make use of files?
Why static variable is used in c?
can we print any string without using terminator?
What does return 1 means in c?