#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 |
What is a null string in c?
List the variables are used for writing doubly linked list program.
What are the different types of C instructions?
What is meant by global static? why we have to use static variable instead of Global variable
write a program to generate address labels using structures?
What is the main differences between C and Embedded C?
Write programs for String Reversal & Palindrome check
What does static variable mean in c?
How can you tell whether two strings are the same?
Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.
2 Answers Scientific Atlanta, Wipro,
The statement, int(*x[]) () what does in indicate?
Is swift based on c?