Can math operations be performed on a void pointer?
No Answer is Posted For this Question
Be the First to Post Answer
What are bit fields? What is their use?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
How can you be sure that a program follows the ANSI C standard?
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
c program to print a name without using semicolon
How can you check to see whether a symbol is defined?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Concat two string with most overlapped substring has to removeĀ "abcd"+ "cdef" = "abcdef
Write a code on reverse string and its complexity.
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,