main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
1 23015main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
12 33630I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
1 3677I 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.
1 3968if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?
4 26459any string of bits of length 'n' represents a unique non- negative integer between.............?
2 7395
What are identifiers and keywords in c?
What are global variables and explain how do you declare them?
When was c language developed?
What is build process in c?
What should malloc() do?
How can you avoid including a header more than once?
What is the difference between procedural and declarative language?
What is hashing in c?
How can I avoid the abort, retry, fail messages?
Define the scope of static variables.
What are categories used for in c?
What are the ways to a null pointer can use in c programming language?
Tell us the use of fflush() function in c language?
Can a pointer be volatile in c?
What are comments and how do you insert it in a C program?