Write a c program to print the sizes and ranges of different
data types in c?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What language is windows 1.0 written?
why integer range between -327680to+32767
What is the difference between far and near in c?
Why & is used in c?
what do you mean by enumeration constant?
Program to display given 3 integers in ascending order
Under what circumstances does a name clash occur?
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
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,
What is indirection? How many levels of pointers can you have?
What is sizeof array?