How do you generate random numbers in C?
No Answer is Posted For this Question
Be the First to Post Answer
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
0 Answers Sikkim Manipal University,
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
What are the two forms of #include directive?
What are header files why are they important?
what is the use of #pragma pack, wer it is used?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
What is a nested loop?
How can I find out if there are characters available for reading?
Why c is called procedure oriented language?
main() { int i; printf("%d",scanf"%d",&i))//if the input is 12 24 34 then wat will be the output }
Describe wild pointers in c?
Can a program have multiple main() functions?