Explain main function in c?
No Answer is Posted For this Question
Be the First to Post Answer
differnce between do and do while
How can you determine the size of an allocated portion of memory?
What is header file in c?
How can I call fortran?
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
What is the value of uninitialized variable in c?
which one is highest Priority in c? a)=,b)+,c)++,d)==
What is the usage of the pointer in c?
Write a code to generate a series where the next element is the sum of last k terms.
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
What is a file descriptor in c?
Write a program to find given number is even or odd without using any control statement.