The statement, int(*x[]) () what does in indicate?
No Answer is Posted For this Question
Be the First to Post Answer
What is time complexity c?
Explain how does flowchart help in writing a program?
Explain what is a pragma?
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
How can I convert a number to a string?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
write a c program that prints all multiples of 3between 1 and 50.
Do array subscripts always start with zero?
is it possible to create your own header files?
program to print upper & lower triangle of a matrix
Explain demand paging.
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?