will u give me old quesrion papers for aptitude for L & t
info tech?
Program to find larger of the two numbers without using if-else,while,for,switch
Why is sizeof () an operator and not a function?
what different between c and c++
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
Can a file other than a .h file be included with #include?
How can I open files mentioned on the command line, and parse option flags?
Lists the benefits of c programming language?
What does c mean?
What are preprocessor directives in c?
Can I initialize unions?
Is c an object oriented programming language?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?