what is an inline fuction??
Answers were Sorted based on User's Feedback
Answer / reegan
inline function is not end of loop function with in this
function
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / g.archana
The Inline function is mainly used for increase the speed
of programming process(or) excution.
because the inline is the key word which used in this
program, then first excute that Statement only.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is getch() function?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
write a program to rearrange the array such way that all even elements should come first and next come odd
Is file a keyword in c?
Convert the following expression to postfix and prefix (A+B) * (D-C)
what is function pointer?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
1. Write a c pgm to print 1 to 100 without using loops. 2. Write a c pgm for leap year 3. Write a c pgm fibbonacci series,factorial 4. Write a c pgm count no of lines , blanks, tabs in a para(File concept) 5. Write a c pgm to print the letter as per given condition i.e.. if u give 4 out put should b 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 6.how do get the o/p in number from 1 to 100 in the screen without using control statement? 7. who do u print the word "hello world" without using "printf" statement? 8. write sql program to get the detail of student in a class? Definitions: structure union arrays linkedlist macros directives difference b/w pre processorsDiffrence: 1.Constructors and destructors 2.Structure and Union 3.Array and Lists 4.pre processor... 5. Privillages in C++ 6.structure and union 7.break and continue 8.while and dowhile Pgm..
the question is that what you have been doing all these periods (one year gap)
Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
how to find the largest element of array without using relational operater?