Answer Posted / 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 |
Post New Answer View All Answers
What is restrict keyword in c?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
Explain how do you list files in a directory?
How is pointer initialized in c?
Which header file is essential for using strcmp function?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What does the characters “r” and “w” mean when writing programs that will make use of files?
What is the process to create increment and decrement stamen in c?
What is the difference between a function and a method in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
How many loops are there in c?
What is an identifier?
write a program to display all prime numbers
What are pointers really good for, anyway?