Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
No Answer is Posted For this Question
Be the First to Post Answer
How can I get back to the interactive keyboard if stdin is redirected?
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 pass by reference in functions?
how could explain about job profile
How do we make a global variable accessible across files? Explain the extern keyword?
What are keywords in c with examples?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What do you mean by team??
write a program which will count occurance of a day between two dates.
Is it possible to run a c program without using main?If yes HOW??
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What is FIFO?