how to write hello word without using semicolon at the end?
Answer Posted / jithneder palle
int main(void)
{
if(printf("hello world"))
}
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
Explain what does the function toupper() do?
What header files do I need in order to define the standard library functions I use?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
please explain every phase in the "SDLC" in the dotnet.
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Is void a keyword in c?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
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
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is the difference between if else and switchstatement
Explain main function in c?
What is variable in c example?
Can you return null in c?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.