Can include files be nested?
No Answer is Posted For this Question
Be the First to Post Answer
What is page thrashing?
What is union and structure?
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
What’s the special use of UNIONS?
What is the condition that is applied with ?: Operator?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
What is the purpose of main( ) in c language?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above