What are c identifiers?
No Answer is Posted For this Question
Be the First to Post Answer
What is Lazy evaluation in C? Give an example.
main() { int i; printf("%d",i^i); }
What is dangling pointer in c?
What is volatile keyword in c?
for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float
Where is c used?
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search
When do we get logical errors?
What is calloc() function?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.