Is linux written in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
11 Answers HCL, Vector, Vector India, Vector Solutions, Wipro,
What is methods in c?
How do you prevent buffer overflows in C?
What is the use of typedef in c?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
Write a programe print the sum of series 0,1,2,.....10
What is clrscr in c?
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
What are the average number of comparisons required to sort 3 elements?
Where in memory are my variables stored?
WAP to accept first name,middle name & last name of a student display its initials?
Explain what is the benefit of using enum to declare a constant?