what do you mean by inline function in C?
No Answer is Posted For this Question
Be the First to Post Answer
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
When should you not use a type cast?
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
Explain following declaration int *P(void); and int (*p)(char *a);
Which type of language is c?
Do you know the difference between exit() and _exit() function in c?
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
Write a program in c to print * * * * * *******
what are the advantage and disadvantage of recursion
What is the benefit of using const for declaring constants?
What are the average number of comparisons required to sort 3 elements?