Is fortran still used in 2018?
No Answer is Posted For this Question
Be the First to Post Answer
Please write the area of a RIGHT ANGLED TRIANGLE.
What is Generic pointer? What is the purpose of Generic pointer? Where it is used?
When should you not use a type cast?
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
What is alloca() and why is its use discouraged?
how to find out the union of two character arrays?
write a program without using main function?
Explain pointers in c programming?
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
What does static variable mean in c?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
What is the difference b/w main() in C language and main() in C++.