main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
1 22940main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
12 33226I 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 3594I 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 3893if 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 26262any string of bits of length 'n' represents a unique non- negative integer between.............?
2 7295
What do you mean by keywords in c?
What is identifier in c?
What are void pointers in c?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Why pointers are used?
Differentiate between #include<...> and #include '...'
What is pointer to pointer in c language?
What is difference between structure and union in c?
Which is better between malloc and calloc?
What is the use of linkage in c language?
Why is it important to memset a variable, immediately after allocating memory to it ?
Explain how can you tell whether a program was compiled using c versus c++?
Is multithreading possible in c?
Write a program to print “hello world” without using semicolon?
What are the types of unary operators?