Can we increase size of array in c?
What is the advantage of an array over individual variables?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
what is difference between overriding and overloading?
How can you convert integers to binary or hexadecimal?
What is the purpose of Scanf Print, getchar, putchar, function?
What is the maximum no. of arguments that can be given in a command line in C.?
Which is more efficient, a switch statement or an if else chain?
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
What is key word in c language?
2. Write a function called hms_to_secs() that takes three int values—for hours, minutes, and seconds—as arguments, and returns the equivalent time in seconds.. Create a program that exercises this function by repeatedly obtaining a time value in hours, minutes, and seconds from the user (format 12:59:59), calling the function, and displaying the value of seconds it returns.
Write program to remove duplicate in an array?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above