Why is c platform dependent?
No Answer is Posted For this Question
Be the First to Post Answer
What is function prototype?
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.
If the size of int data type is two bytes, what is the range of signed int data type?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What is the difference between printf and scanf in c?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
How do you generate random numbers in C?
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?
What is the use of keyword VOLATILE in C?
What does %2f mean in c?