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 difference between structure and union in c programming?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
What is table lookup in c?
Explain why can’t constant values be used to define an array’s initial size?
can please someone teach me how to create this program using while statement.. this is the output should look like 0 2 4 6 8 10 -thanks.. :) need it asap...
In which area global, external variables are stored?
Can a program have two main functions?
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
What is wild pointer in c?
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)