main()
{
char p[] = "hello world!";
p = "vector";
printf("%s",p);
}
Answers were Sorted based on User's Feedback
Answer / amir khan
Vector because char a[] gives error due to empty parenthesis
| Is This Answer Correct ? | 4 Yes | 3 No |
a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All
3 Answers Accenture, Digg.com,
What is the difference between null pointer and the void pointer?
How can I find the modification date of a file?
If the size of int data type is two bytes, what is the range of signed int data type?
Write a c pgm for leap year
11 Answers College School Exams Tests, IBM, TCS,
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
Why is it usually a bad idea to use gets()? Suggest a workaround.
Explain how does free() know explain how much memory to release?
What are unions in c?
In which layer of the network datastructure format change is done
how could explain about job profile
What is the mean of this statement:: if(int i=0 * i=9)