Are there constructors in c?
No Answer is Posted For this Question
Be the First to Post Answer
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What are different types of variables in c?
What is a good data structure to use for storing lines of text?
Explain why can’t constant values be used to define an array’s initial size?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
Write a program to reverse a linked list in c.
Are the outer parentheses in return statements really optional?
What is #include stdio h and #include conio h?
What is getche() function?
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.