What are the three constants used in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between scanf and gets?
what is a static function
What is the use of getchar functions?
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); }
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
What is c language and why we use it?
Is there any possibility to create customized header file with c programming language?
What are the c keywords?
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
how to display 2-D array elements in spiral