Famous puzzles which are generally asked by companies during
interviews ?
Why should I prototype a function?
12344321 123 321 12 21 1 1 how i print this program??
5 Answers DSR Management, Winit,
Explain how many levels deep can include files be nested?
write a program in c language for the multiplication of two matrices using pointers?
What are the features of c language?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
What's the best way to declare and define global variables?
How to set a variable in the environment list?
What is difference between arrays and pointers?
why return type of main is not necessary in linux
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);