#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
What does void main () mean?
Once I have used freopen, how can I get the original stdout (or stdin) back?
where are auto variables stored? What are the characteristics of an auto variable?
Explain what are compound statements?
Write a program on swapping (100, 50)
What are the advantages of using new operator as compared to the function malloc ()?
What is modeling?
How can I manipulate individual bits?
What is memory leak in c?
swap 2 numbers without using third variable?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
hi send me sample aptitude papers of cts?
How do we make a global variable accessible across files? Explain the extern keyword?
What is the size of empty structure in c?