C Programming and Technical Programming Puzzles

static variable will be visible in
a) fn.in which they are defined
b)module they are defined
c) all the program
d) none

Read Solution (Total 8)

C Other Question

main()
{ for(i=0; i++; i<100)
printf("hello world"); }

a)100 times
b)0 times
c)Infinite loop
d)None of the above.
The task is to find the minimum sum of Products of two arrays of the same size, given that k modifications are allowed on the first array. In each modification, one array element of the first array can either be increased or decreased by 2.