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 |
with out using main how to execute the program?
difference between i++* and *++i
What is calloc in c?
Explain about block scope in c?
Write a C program to fill a rectangle using window scrolling
what is linkage error when it occurs in c program
#define d 10+10 main() { printf("%d",d*d); }
What is the diffrent between while and do while statement ?
Explain can you assign a different address to an array tag?
main difference between c and c++ language
WHAT IS MEANT BY LIFE?
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }