What is main function in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is main is user defined function?
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
character array A[12] can hold
Explain how can a program be made to print the name of a source file where an error occurs?
code for find determinent of amatrix
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
Write code for finding depth of tree
What is modeling?
What is restrict keyword in c?
Difference between C and Embedded C?
Write a program to find whether the given number is prime or not?