#include<stdio.h>
void main()
{
char *str;
long unsigned int add;
str="Hello C";
add=&str[0];
printf("%c",add);
}
What is the output?
Answer Posted / manish122
Error:- Non Portable Pointer Conversion.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Do you know the use of 'auto' keyword?
What is the hardest programming language?
Compare array data type to pointer data type
What are the 5 data types?
Is c easier than java?
Who developed c language and when?
Is array a primitive data type in c?
Why doesn't C support function overloading?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What is the sizeof () operator?
What are register variables? What are the advantage of using register variables?
What is the deal on sprintf_s return value?
What is structure padding in c?
What is selection sort in c?