#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 / balakrishna
Non-Portable pointer assignment in function main
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Tell me is null always defined as 0(zero)?
What is indirection? How many levels of pointers can you have?
What is static and volatile in c?
What is an auto keyword in c?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Why is c called "mother" language?
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Explain what is the purpose of "extern" keyword in a function declaration?
Explain what is dynamic data structure?
What is enumerated data type in c?
i got 75% in all semester am i eligible for your company
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
What does c mean in standard form?
What is quick sort in c?