Differentiate between the = symbol and == symbol?
No Answer is Posted For this Question
Be the First to Post Answer
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
What is the explanation for modular programming?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
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. The Logic should be written in Data Structures?
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
What is the benefit of using an enum rather than a #define constant?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
Write a code to generate a series where the next element is the sum of last k terms.
Function to find the given number is a power of 2 or not?
What are the different types of errors?
What is the size of enum in bytes?