What language is c written?
No Answer is Posted For this Question
Be the First to Post Answer
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
Method Overloading exist in c ?
wat is the difference between array and pointer?
What is hash table in c?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
What are the 5 data types?
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
What does the c in ctime mean?
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
How can you convert integers to binary or hexadecimal?
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1