Explain what is wrong with this statement? Myname = ?robin?;


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What does extern mean in a function declaration?

4 Answers  


write a program to insert an element at the specified position in the given array in c language

5 Answers   Appin, IBM,


How many levels of pointers have?

0 Answers  


What is union in c?

0 Answers  


what are two kinds of java

2 Answers  






Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?

3 Answers  


write c program to display output 10(10+20)+(10+20+30)+ ... n term

0 Answers   Hindustan Gum Chemicals,


how to generate sparse matrix in c

3 Answers  


write a program to print the one dimensional array.

1 Answers  


What is extern keyword in c?

0 Answers  


What is the use of a semicolon (;) at the end of every program statement?

1 Answers  


what is the output of the following program? 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; } }

4 Answers  


Categories