Explain data types & how many data types supported by c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain low-order bytes.
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
How does pointer work in c?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
How many types of linked lists what are they? How many types of data structures?
18 Answers BSNL, Pivotal Software,
What are the advantages of Macro over function?
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
Difference between data structure and data base.
7 Answers CTS, Value Labs, Zoho,
What is output redirection?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
What is the acronym for ansi?