Can we declare a function inside a function in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program in c to print **** * * * * ****
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Can an array be an Ivalue?
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
What is getch() function?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
What does it mean when a pointer is used in an if statement?
What would be an example of a structure analogous to structure c?
What is void c?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.