How do you search data in a data file using random access method?
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
what are bit fields in c?
Place the #include statement must be written in the program?
What is a buffer in c?
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
how to print this sereis 2 4 3 6 5..........?
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 structures and unions? State differencves between them.
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
what is printf
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
Why void is used in c?