Explain how can I write functions that take a variable number of arguments?
No Answer is Posted For this Question
Be the First to Post Answer
List the difference between a "copy constructor" and a "assignment operator"?
what is the difference between #include<stdio.h> and #include "stdio.h" ?
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.
why we use pointer in c
Is swift based on c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What are qualifiers?
using for loop sum 2 number of any 4 digit number in c language
write a program to find out prime number using sieve case?
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
What do you mean by a sequential access file?