write c program without semicolon
Answers were Sorted based on User's Feedback
Answer / srikanth
int main()
{
if(printf("hello")
{
}
getch();
}
| Is This Answer Correct ? | 13 Yes | 25 No |
say the following declaration is correct nr not. int b=a,n=0;
what is the difference between global variable & static variable declared out side all the function in the file.
What is c method?
34.what are bitwise shift operators? 35.what are bit fields? What is the use of bit fields in a structure declaration? 36.what is the size of an integer variable? 37.what are the files which are automatically opened when a c file is executed? 38.what is the little endian and big endian? 39.what is the use of fflush() function? 40.what is the difference between exit() and _exit() functions? 41.where does malloc() function get the memory? 42.what is the difference between malloc() and calloc() function? 43.what is the difference between postfix and prefix unary increment operators?
How can my program discover the complete pathname to the executable from which it was invoked?
Is that possible to store 32768 in an int data type variable?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
How can you check to see whether a symbol is defined?
write a code for large nos multilication (upto 200 digits)
Explain the ternary tree?
Multiply an Integer Number by 2 Without Using Multiplication Operator