main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
1 23008main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); } wat is the o/p and how?
12 33606I 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 3673I 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 3965if 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 26453any string of bits of length 'n' represents a unique non- negative integer between.............?
2 7388
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
Explain what are linked list?
How do I round numbers?
Are the expressions * ptr ++ and ++ * ptr same?
Write a function that will take in a phone number and output all possible alphabetical combinations
What is meant by inheritance?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What is c mainly used for?
There seem to be a few missing operators ..
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
develop algorithms to add polynomials (i) in one variable
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
What is string function in c?
Is there any possibility to create customized header file with c programming language?