What are the advantage of c language?
No Answer is Posted For this Question
Be the First to Post Answer
Why is C language being considered a middle level language?
In c programming language, how many parameters can be passed to a function ?
Why is c platform dependent?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
my name is nani i completed my b-tech in hyd now i want go for interveiw but i dont know the process of software field interveiws plz help me anyone how many rouds there n what rounds plz plz plz help me n where i can get these details
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
Why c language is called c?
how can f be used for both float and double arguments in printf? Are not they different types?
can you change name of main()?how?
Explain what is the benefit of using an enum rather than a #define constant?
main() { int a,b; printf("%d,%d",scanf("%d%d",&a,&b)); } => do u mean above program's output... =>output will be:2,whatever you enter value for b. =>because scanf is a library fn which will return how many arguements it processes, and second value you are right mr.Satya but i found my self unable to understand that for the first time scanf returns the no of successful matches but how for the second time it returns the value of 'b'.while a function should return the same 'r' value every time.