Is c still used?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between #include<...> and #include '...'
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
write a program to generate address labels using structures?
Write a program in C to print the alphabets in order as on a mobile phone.i.e:When 2 is pressed once 'a' prints and if it is pressed two times 'b' prints and so on.we have to print all the alphabets as on mobile phone like this.
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
what is meant by the "equivalence of pointers and arrays" in C?
Write the control statements in C language
What does != Mean in c?
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
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; } }
What is oops c?