Difference between macros and inline functions? Can a function be forced as inline?
No Answer is Posted For this Question
Be the First to Post Answer
Why c is a procedural language?
Is c high or low level?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
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); }
main is a predefined or user define function if user defined why? if predefined whay?
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
What is the right way to use errno?
what are the general concepts of c and c++
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
Why is c called "mother" language?
What is an anonymous union and where to apply that ?