A function 'q' that accepts a pointer to a character as
argument and returns a pointer to an array of integer can
be declared as:
A)int (*q(char*)) []
B)int *q(char*) []
C)int(*q)(char*) []
D)None of the Above
Answers were Sorted based on User's Feedback
what is the difference between structural,object based,object orientd programming languages?
Why are all header files not declared in every c program?
How can I set an array's size at run time?
plz answer..... a program that reads non-negative integer and computes and prints its factorial
While(1) { } when this loop get terminate is it a infinite loop?
what is the definition of storage classes?
What are the restrictions of a modulus operator?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
main() { printf(5+"Vidyarthi Computers"); }
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,