which one is highest Priority in c?
a)=,b)+,c)++,d)==
Answers were Sorted based on User's Feedback
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
What is malloc and calloc?
What does the c in ctime mean?
What is clrscr ()?
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
What is the difference between the local variable and global variable in c?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
Difference between MAC vs. IP Addressing
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); }
c program to arrange digits in a no in ascending and descending order
Write a program to add a given duration with time(24hrs format)
In which header file is the null macro defined?