Differentiate between Macro and ordinary definition.
No Answer is Posted For this Question
Be the First to Post Answer
main() { printf("hello"); fork(); }
Is javascript written in c?
Describe wild pointers in c?
Is anything faster than c?
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. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
Table of Sudoku n*n
What is the proper way of these job Tell me about there full work
What is a const pointer, and how does it differ from a pointer to a const?
What are inbuilt functions in c?
There is a 100-story building and you are given two eggs. The eggs (and the building) have an interesting property that if you throw the egg from a floor number less than X, it will not break. And it will always brake if the floor number is equal or greater than X. Assuming that you can reuse the eggs which didn't broke; you got to find X in a minimal number of throws. Give an algorithm to find X in minimal number of throws.
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
What does char * * argv mean in c?