p*=(++q)++*--p when p=q=1 while(q<=6)
No Answer is Posted For this Question
Be the First to Post Answer
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?
whats the use of header file in c?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is && in c programming?
What are integer variable, floating-point variable and character variable?
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
Explain how can you tell whether two strings are the same?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
How can I implement a delay, or time a users response, with sub-second resolution?
What does it mean when the linker says that _end is undefined?