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 |
An array name contains base address of the array. Can we change the base address of the array?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
What is the difference between the expression “++a” and “a++”?
What is use of integral promotions in c?
Explain what is the difference between text files and binary files?
What is scanf_s in c?
explain what is an endless loop?
what is the format specifier for printing a pointer value?
how to set Nth bit of a variable?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
write aprogram for There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
1 Answers iGate, Shashi, Source Bits, Subex,