What is void c?
No Answer is Posted For this Question
Be the First to Post Answer
What Is The Difference Between Null And Void Pointer?
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
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
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
how we do lcm of two no using c simple if while or for statement
Explain following declaration int *P(void); and int (*p)(char *a);
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
What is extern keyword in c?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Explain what does the function toupper() do?
What is the use of the restrict keyword?