What is the meaning of int *x[]();?
Answer / guest
x is a pointer to an array of function which takes no
arguments and returns int
| Is This Answer Correct ? | 1 Yes | 1 No |
what is the difference between structural,object based,object orientd programming languages?
Explain modulus operator.
how to execute with out main in cprogram
What is meant by high-order and low-order bytes?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What are header files? What are their uses?
write a c program to find the probability of random numbers between 1-1000
Can i use Two or More Main Funtion in any C program.?
Which weighs more, a gram of feathers or a gram of gold?
can you explain in brief what is "r+" mode in a file... i know that it si used to read and modify rhe existing content.... but explalanation about the file pointer in "r+" mode i wann to know???????????
What is the use of parallelize in spark?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)