Write a code to determine the total number of stops an elevator would take to serve N number of people.
What does malloc () calloc () realloc () free () do?
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
what is pointer ?
10 Answers Kernex Micro Systems,
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
what is compiler
Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??
what is the code for getting the output as * ** ***
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
Write a C program to perform some of the operation which can be performed using Single linked list
Why are all header files not declared in every c program?
Tell me with an example the self-referential structure?