shorting algorithmS
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What is the use of void pointer and null pointer in c language?
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
what is the difference between static variable and register variable?
define switch statement?
HOW CAN ADD OUR FUNCTION IN LIBRARY.
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
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?
Why is sizeof () an operator and not a function?
What are qualifiers and modifiers c?
What is hashing in c?