int a=1,b=2,c=3;
printf("%d,%d",a,b,c);
What is the output?
Post New Answer View All Answers
What is hashing in c language?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is variable initialization and why is it important?
Are pointers really faster than arrays?
What is the difference between c and python?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
What is the use of getch ()?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
Which is an example of a structural homology?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What are high level languages like C and FORTRAN also known as?
What is null pointer constant?
Explain what is a program flowchart and explain how does it help in writing a program?
What does *p++ do? What does it point to?