#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 / praveen
Error.Non-Portable pointer assignment in function main
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the advantage of c language?
Can you please explain the difference between malloc() and calloc() function?
What's a good way to check for "close enough" floating-point equality?
What is const and volatile in c?
i got 75% in all semester am i eligible for your company
How can I ensure that integer arithmetic doesnt overflow?
What does nil mean in c?
What does calloc stand for?
What is the basic structure of c?
What does 1f stand for?
Can you explain the four storage classes in C?
Write a code to generate a series where the next element is the sum of last k terms.
What does the function toupper() do?
What is volatile c?
What is pass by value in c?