What is the value of y in the following code?
x=7;y=0;
if(x=6)
y=7;
else
y=1;
Answer Posted / bhagya
1
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
By using C language input a date into it and if it is right?
what is stack , heap ,code segment,and data segment
Do array subscripts always start with zero?
write a program to find the given number is prime or not
Who developed c language?
What is function prototype?
Explain 'bus error'?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What are valid operations on pointers?
Explain pointer. What are function pointers in C?
what is use of malloc and calloc?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
why do some people write if(0 == x) instead of if(x == 0)?
Under what circumstances does a name clash occur?
how to construct a simulator keeping the logical boolean gates in c