array of pointer
pointer to array
pointer to pointer
How is a structure member accessed?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
What are pointers? What are stacks and queues?
to get a line of text and count the number of vowels in it
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
WHAT IS ABSTRACT DATA TYPE
what is develop in c language
Why we use void main in c?
Do you know what are the properties of union in c?
Why void main is used in c?
How to print "I Love My India" without using semi colon?