what is the output of the following program?
#include<stdio.h>
void main()
{
int x=4,y=3,z;
z=x-- -y;
printf("\n%d %d %d",x,y,z);
}
Post New Answer View All Answers
How can I make sure that my program is the only one accessing a file?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
Write a program to show the change in position of a cursor using c
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
How can I split up a string into whitespace-separated fields?
Write a program to reverse a string.
Describe explain how arrays can be passed to a user defined function
How can I open a file so that other programs can update it at the same time?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
How do I use strcmp?
What are the different types of control structures in programming?
what are the 10 different models of writing an addition program in C language?
What does != Mean in c?
What is the difference between fread buffer() and fwrite buffer()?
Explain data types & how many data types supported by c?