What is scope of variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
what is the use of ‘auto’ keyword?
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
what are the general concepts of c and c++
What is the use of sizeof?
Identify the operators that is not used with pointer a. && b. # c. * d. >>
what is the difference between postfix and prefix unary increment operators?
what is the difference between global variable & static variable declared out side all the function in the file.
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
What is union in c?
Is c pass by value or reference?