What is the newline escape sequence?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different categories of functions in c?
Explain how do you use a pointer to a function?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
What does d mean?
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 advantages of using linked list for tree construction?
give an example of type casting by a simple c program
What is indirection in c?
How to write a code for reverse of string without using string functions?
What is indirect recursion? give an example?
There seem to be a few missing operators ..
Why is c so popular?