#include<stdio.h>
void main()
{
char *str;
long unsigned int add;
str="Hello C";
add=&str[0];
printf("%c",add);
}
What is the output?
Answers were Sorted based on User's Feedback
Answer / vinod kumar
warning: assignment makes integer from pointer without a cast
| Is This Answer Correct ? | 4 Yes | 3 No |
Answer / balakrishna
Non-Portable pointer assignment in function main
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / praveen
Error.Non-Portable pointer assignment in function main
| Is This Answer Correct ? | 0 Yes | 0 No |
char ch="{'H','I',0};printf("%s",ch);what is output
what is c?
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
whitch value return void main?
Sir i need notes for structure,functions,pointers in c language can you help me please
How can I manipulate individual bits?
how to find the kth smallest element in the given list of array elemnts.
write a progam to compare the string using switch case?
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
What should malloc(0) do?
what is meant by c
say the following declaration is correct nr not. int b=a,n=0;