what will be the out put.
#include<stdio.h>
void main()
{
printf("Output:");
printf(1+"vikashpatel");
}//output: ikashpatel
Why is C called a middle-level language?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
How many levels of indirection in pointers can you have in a single declaration?
0 Answers Agilent, ZS Associates,
What does c mean?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
what are two kinds of java
int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }
can u give me the good and very optimised code for a car racing game?
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
what is const volatile?
Tell me about low level programming languages.