What is full form of PEPSI
No Answer is Posted For this Question
Be the First to Post Answer
main() { int c[ ]={2.8,3.4,4,6.7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf(" %d ",*c); ++q; } for(j=0;j<5;j++){ printf(" %d ",*p); ++p; } }
main() { printf("%x",-1<<4); }
main() { int x=5; clrscr(); for(;x==0;x--) { printf("x=%d\n”", x--); } } a. 4, 3, 2, 1, 0 b. 1, 2, 3, 4, 5 c. 0, 1, 2, 3, 4 d. none of the above
main() { int i = 0xff ; printf("\n%d", i<<2); } a. 4 b. 512 c. 1020 d. 1024
void ( * abc( int, void ( *def) () ) ) ();
write a c-program to display the time using FOR loop
int a = 10 + 10 .... ,... A = A * A What would be the value of A? The answer is 120!! Could anyone explain this to me.
2 Answers Bosch, eInfochips, HCL, IHCL,
Write a prog to accept a given string in any order and flash error if any of the character is different. For example : If abc is the input then abc, bca, cba, cab bac are acceptable, but aac or bcd are unacceptable.
main() { char string[]="Hello World"; display(string); } void display(char *string) { printf("%s",string); }
String reverse with time complexity of n/2 with out using temporary variable.
Write a single line c expression to delete a,b,c from aabbcc
why nlogn is the lower limit of any sort algorithm?