What are data structures in c and how to use them?
No Answer is Posted For this Question
Be the First to Post Answer
How can you pass an array to a function by value?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
give an example of type casting by a simple c program
i have a written test in tomorrow
What is calloc() function?
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.
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
what are the stages of compilation
What are linked lists in c?
how to swap two integers 1 and 32767 without using third variable