please give me some tips for the placement in the TCS.
No Answer is Posted For this Question
Be the First to Post Answer
What is the maximum no. of arguments that can be given in a command line in C.?
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
Do you know the use of 'auto' keyword?
write a c program to convert fahrenheit to celsius?
What is extern variable in c with example?
Explain what does it mean when a pointer is used in an if statement?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Why #include is used in c language?
How many levels deep can include files be nested?
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
What is Conio.h ?
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); }