char p="data";
printf(p);
Answers were Sorted based on User's Feedback
Answer / veluri.haritha
It gives an error message as "NON PORTABLE POINTER CONVERSION"
because character data type accepts single character which
is enclosed in the single quotes.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / v.haritha
It gives an error message as "NON PORTABLE POINTER CONVERSION"
because a variable of character data type can store only a
single character where as in this case the variable is
initialized with a string.
answered by V.HARITHA undergoing c training yet
to join b.tech.
| Is This Answer Correct ? | 1 Yes | 0 No |
Is fortran still used today?
Explain what is the difference between null and nul?
What is structure padding ?
What is scope of variable in c?
What is openmp in c?
What is a stream?
how the size of an integer is decided? - is it based on processor or compiler or OS?
19 Answers HCL, JPR, Microsoft, nvidia,
what is the benefit of c30
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
What are the advantages of c language?
Explain how can you avoid including a header more than once?
write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..