What is your stream meaning?
No Answer is Posted For this Question
Be the First to Post Answer
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
program to find the roots of a quardratic equation
write a c program to find biggest of 3 number without relational operator?
an algorithem for the implementation of circular doubly linked list
write a c program to calculate sum of digits till it reduces to a single digit using recursion
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?
What is the stack in c?
What is the difference between null pointer and wild pointer?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What's wrong with "char *p; *p = malloc(10);"?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?