How a string is stored in c?
No Answer is Posted For this Question
Be the First to Post Answer
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
What is structure pointer in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Is there anything like an ifdef for typedefs?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is "Duff's Device"?
how to find greatet of 10 numbers without using array?
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
find largest of 3 no
Which command is more efficient? *(ptr+1) or ptr[1]