the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called
a) nested function
b) void function
c) recursive function
d) indifinite function
How can you read a directory in a C program?
Is struct oop?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
How to get string length of given string in c?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(“%d\n”,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Explain what does the format %10.2 mean when included in a printf statement?
What is the default value of local and global variables in c?
What is a example of a variable?
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
What is #pragma statements?
How many main () function we can have in a project?
Explain the Difference between the New and Malloc keyword.