write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / upendra
main()
{
if(printf("welcome"))
}
}
]
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
Explain 'far' and 'near' pointers in c.
Write a program which returns the first non repetitive character in the string?
Are enumerations really portable?
What is getche() function?
Once I have used freopen, how can I get the original stdout (or stdin) back?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What does != Mean in c?
Explain the use of function toupper() with and example code?
Define recursion in c.
Function calling procedures? and their differences? Why should one go for Call by Reference?
What are qualifiers?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
How will you write a code for accessing the length of an array without assigning it to another variable?