Why doesnt the call scanf work?
No Answer is Posted For this Question
Be the First to Post Answer
What is data structure in c language?
what is output of the following statetment?Printf(“%x”, -1<<4); ?
can anyone proide me reading material on svit00ef27@yahoo.com please thanx in advance
Who invented bcpl language?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
In a switch statement, what will happen if a break statement is omitted?
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
What is console in c language?
What is the need of structure in c?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
why TCS selected more student in the software field from all institution.
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }