Tell me with an example the self-referential structure?
No Answer is Posted For this Question
Be the First to Post Answer
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
void main() { int i=5; printf("%d",i+++++i); }
What does stand for?
Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is scope rule in c?
What is auto keyword in c?
what is const volatile?
why little endian and big endian came?y they using differently? y they not used commonly ?wt is application of little and big ?
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
Is javascript written in c?
What is the ANSI C Standard?