#include<stdio.h>
int main()
{ int i=0,j=1,k=2,m,n=0;
m=i++&&j++&&k++||n++;
printf("%d,%d,%d,%d,%d",i,j,k,m,n);
}
Answer Posted / boopathi
0,1,2,o,o
| Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
Hi can anyone tell what is a start up code?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What is wrong in this statement? scanf(“%d”,whatnumber);
What are the types of bitwise operator?
What is difference between structure and union in c?
please send me the code for multiplying sparse matrix using c
What is time null in c?
What is the best way to comment out a section of code that contains comments?
Can a pointer be volatile in c?
Can the size of an array be declared at runtime?
What is substring in c?
What are the advantages of external class?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
How is a pointer variable declared?
Are the expressions * ptr ++ and ++ * ptr same?