What is a char c?
No Answer is Posted For this Question
Be the First to Post Answer
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
What is meant by preprocessor in c?
What's the total generic pointer type?
write a program to display all prime numbers
hello friends what do u mean by BUS ERROR i got this error while i am doing my program in DATA STRUCTURES
WHAT IS HIGH LEVEL LANGUAGE?
With the help of using classes, write a program to add two numbers.
Explain what is the difference between a free-standing and a hosted environment?
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
How can I find the day of the week given the date?
how to find the size of the data type like int,float without using the sizeof operator?