#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
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
Explain the use of 'auto' keyword in c programming?
What is linear search?
Explain #pragma statements.
In a header file whether functions are declared or defined?
What do you mean by dynamic memory allocation in c?
write a program to rearrange the array such way that all even elements should come first and next come odd
What is LINKED LIST? How can you access the last element in a linked list?
Can we add pointers together?
Does c have function or method?
What are bitwise shift operators in c programming?
How do we print only part of a string in c?
How we can insert comments in a c program?
Explain union. What are its advantages?
What is the scope of global variable in c?