What does. int *x[](); means ?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What are the advantages of c language?

0 Answers  


C program to find frequency of each character in a text file?

6 Answers  


write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);

0 Answers   TCS,


What is a pragma?

0 Answers  


Write a program to use switch statement.

0 Answers   Agilent, Integreon, ZS Associates,






main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }

3 Answers  


#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }

3 Answers   SRG,


which operator having highest precedence? a.)+ b.)++ c.)= d.)%

4 Answers  


#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

0 Answers  


How many types of operators are there in c?

0 Answers  


what is used instead of pointers in java than c?

1 Answers   Vuram,


how can f be used for both float and double arguments in printf? Are not they different types?

0 Answers  


Categories