What is the process to generate random numbers in c programming language?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantage of c language?
What is structure padding in c?
how to add our own function in c library please give details.?
How can I sort a linked list?
Write a program of advanced Fibonacci series.
What is nested structure in c?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
Write a program to generate prime factors of a given integer?
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }