Do you know what is a programing language ?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is dynamic data structure?
I have a varargs function which accepts a float parameter?
How do you declare a variable that will hold string values?
Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
How to print "I Love My India" without using semi colon?
What is function definition in c?
what is the associativity of bitwise OR operator?
What is the modulus operator?
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.
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
Are the expressions * ptr ++ and ++ * ptr same?