How can I rethow can I return a sequence of random numbers which dont repeat at all?
No Answer is Posted For this Question
Be the First to Post Answer
What is a stream?
When should volatile modifier be used?
What does c mean before a date?
Is c language still used?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
What is the right type to use for boolean values in c?
. Explain the differences between fork() and exec() in C
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
Can we replace the struct function in tree syntax with a union?
What are the uses of pre-processor directives?
What is double pointer in c?
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me