what are bit fields in c?
No Answer is Posted For this Question
Be the First to Post Answer
c program to subtract between two numbers without using '-' sign and subtract function.
Write a program to reverse a given number in c language?
Explain what is wrong in this statement?
Why c is a mother language?
Do you know null pointer?
What is auto keyword 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.
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
What is an endless loop?
Compare interpreters and compilers.
Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]