what is associativity explain
what is the precidence for * and & , * and ++
how the folloing declaration work
1) *&p;
2) *p++;
No Answer is Posted For this Question
Be the First to Post Answer
write a program to print sum of each row of a 2D array.
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
Why do some versions of toupper act strangely if given an upper-case letter?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
What are type modifiers in c?
write a progam to display the factors of a given number and disply how many prime numbers are there?
disadvantages of realloc ?
Which is better pointer or array?
What is the purpose of ftell?
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.