What does. int *x[](); means ?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages of c language?
C program to find frequency of each character in a text file?
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 []);
What is a pragma?
Write a program to use switch statement.
0 Answers Agilent, Integreon, ZS Associates,
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
#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
How many types of operators are there in c?
what is used instead of pointers in java than c?
how can f be used for both float and double arguments in printf? Are not they different types?