What are the 5 organizational structures?
No Answer is Posted For this Question
Be the First to Post Answer
What are register variables in c?
12. 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 New modifiers?
Explain continue keyword in c
which type of aspect you want from the student.
How does variable declaration affect memory?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What does %2f mean in c?
what does data structure mean?
Is it possible to run a c program without using main?If yes HOW??
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
which will be first in c compiling ,linking or compiling ,debugging.