What is formal argument?
No Answer is Posted For this Question
Be the First to Post Answer
what are advantages of U D F?
write a programming in c language, 1 3 5 7 9 11
3. When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
program for swapping two strings by using pointers in c language
Can a variable be both const and volatile?
what is a function prototype?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
Write a program to compute the following 1!+2!+...n!
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above