What is c value paradox explain?
I heard that you have to include stdio.h before calling printf. Why?
What is the best organizational structure?
Explain why C language is procedural?
What is hashing in c?
What is the difference between procedural and declarative language?
write a program to rearrange the array such way that all even elements should come first and next come odd
int i=10; printf("%d %d %d", i, i=20, i);
Write a program to swap two numbers without using the third variable?
Is exit(status) truly equivalent to returning the same status from main?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What are qualifiers?
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
When is a void pointer used?
Is it possible to use curly brackets ({}) to enclose single line code in c program?