Is it possible to type a name in command line without ant
quotes?



Is it possible to type a name in command line without ant quotes?..

Answer / ramakant chauhan

yes

Is This Answer Correct ?    6 Yes 1 No

Post New Answer

More C Code Interview Questions

How to count a sum, when the numbers are read from stdin and stored into a structure?

1 Answers  


Give a oneline C expression to test whether a number is a power of 2?

25 Answers   EA Electronic Arts, Google, Motorola,


how to test pierrot divisor

0 Answers  


Write a program to receive an integer and find its octal equivalent?

7 Answers  


main() { float f=5,g=10; enum{i=10,j=20,k=50}; printf("%d\n",++k); printf("%f\n",f<<2); printf("%lf\n",f%g); printf("%lf\n",fmod(f,g)); }

1 Answers  






write a c program to Reverse a given string using string function and also without string function

1 Answers  


#include<stdio.h> main() { struct xx { int x=3; char name[]="hello"; }; struct xx *s=malloc(sizeof(struct xx)); printf("%d",s->x); printf("%s",s->name); }

1 Answers   TCS,


x=2 y=3 z=2 x++ + y++; printf("%d%d" x,y);

2 Answers  


Is this code legal? int *ptr; ptr = (int *) 0x400;

1 Answers  


1 o 1 1 0 1 0 1 0 1 1 0 1 0 1 how to design this function format in c-language ?

2 Answers  


Derive expression for converting RGB color parameters to HSV values

1 Answers  


#include<conio.h> main() { int x,y=2,z,a; if(x=y%2) z=2; a=2; printf("%d %d ",z,x); }

1 Answers  


Categories