#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 / vinod kumar
warning: assignment makes integer from pointer without a cast
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
Why is main function so important?
What is a 'null pointer assignment' error?
What is the use of f in c?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What are the various types of control structures in programming?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
How can I change the size of the dynamically allocated array?
How do you override a defined macro?
What is the Purpose of 'extern' keyword in a function declaration?
what is the difference between class and unio?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
Why does everyone say not to use scanf? What should I use instead?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is a newline escape sequence?
Is the exit() function same as the return statement? Explain.