How are strings stored in c?
write a program to display the frequency of each element in a given array in c language
How do you write a program which produces its own source code as output?
What is the purpose of Scanf Print, getchar, putchar, function?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
ABCDCBA ABC CBA AB BA A A
What is the difference between near, far and huge pointers?
What are different storage class specifiers in c?
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
What are the different types of C instructions?
is it possible to create your own header files?
Write a program to generate the Fibinocci Series
When is a void pointer used?