what is the output of the following program?
main()
{
int i=-1,j=-1,k=0,l=2,m;
m=i++&&j++&&k++||l++;
printf("%d %d %d %d %d",i,j,k,l,m);
}
Post New Answer View All Answers
What does s c mean on snapchat?
Tell us something about keyword 'auto'.
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
What is an lvalue in c?
what will be maximum number of comparisons when number of elements are given?
What is register variable in c language?
How can you access memory located at a certain address?
Explain what is output redirection?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
Explain how can I avoid the abort, retry, fail messages?
What is wrong with this program statement? void = 10;
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What are structures and unions? State differencves between them.
What is variable and explain rules to declare variable in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }