#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 is a rvalue?
What is the sizeof () operator?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
When should the volatile modifier be used?
What is a example of a variable?
Explain a file operation in C with an example.
What is the difference between if else and switchstatement
What is c standard library?
What is #define size in c?
How do shell structures work?
What does static variable mean in c?
to find the closest pair
Can an array be an Ivalue?
What is s in c?
Explain indirection?