Answer Posted / siva koratani
#include<stdio.h>
#define begin m##a##i##n
void begin()
{
printf("Hello");
}
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
Where are c variables stored in memory?
What is assignment operator?
What is a pointer in c plus plus?
How do I convert a string to all upper or lower case?
How many types of sorting are there in c?
What are static variables in c?
What is wrong with this program statement? void = 10;
What is the general form of #line preprocessor?
Is main an identifier in c?
Can you please explain the scope of static variables?
writ a program to compare using strcmp VIVA and viva with its output.
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Explain how are 16- and 32-bit numbers stored?
What is the difference between text and binary modes?