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 |
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
any "C" function by default returns an a) int value b) float value c) char value d) a & b
what is differnence b/w macro & functions
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
Fifty minutes ago if it was four times as many mints past 3 o clock. how many minutes is it to six o'clock n how....?????
from which concept of 'c', the static member function of 'c++' has came?
Explain the ternary tree?
Explain what are the advantages and disadvantages of a heap?
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
How would you print out the data in a binary tree, level by level, starting at the top?
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
What is pass by value in c?