To reverse an entire text file into another text file....
get d file names in cmd line
No Answer is Posted For this Question
Be the First to Post Answer
#define clrscr() 100 main() { clrscr(); printf("%d\n",clrscr()); }
Is the following statement a declaration/definition. Find what does it mean? int (*x)[10];
main() { int i = 0xff ; printf("\n%d", i<<2); } a. 4 b. 512 c. 1020 d. 1024
Write a C function to search a number in the given list of numbers. donot use printf and scanf
What is the output of the program given below main() { signed char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
typedef struct error{int warning, error, exception;}error; main() { error g1; g1.error =1; printf("%d",g1.error); }
#include<stdio.h> main() { int a[2][2][2] = { {10,2,3,4}, {5,6,7,8} }; int *p,*q; p=&a[2][2][2]; *q=***a; printf("%d----%d",*p,*q); }
How can i find first 5 natural Numbers without using any loop in c language????????
main() { signed int bit=512, mBit; { mBit = ~bit; bit = bit & ~bit ; printf("%d %d", bit, mBit); } } a. 0, 0 b. 0, 513 c. 512, 0 d. 0, -513
3 Answers HCL, Logical Computers,
main() { { unsigned int bit=256; printf("%d", bit); } { unsigned int bit=512; printf("%d", bit); } } a. 256, 256 b. 512, 512 c. 256, 512 d. Compile error
main() { char *p = “ayqm”; char c; c = ++*p++; printf(“%c”,c); }
main() { char p[ ]="%d\n"; p[1] = 'c'; printf(p,65); }