What is #error and use of it?
No Answer is Posted For this Question
Be the First to Post Answer
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
write a program to swap two variables a=5 , b= 10 without using third variable
What is the use of keyword VOLATILE in C?
What is type qualifiers?
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
What is a good data structure to use for storing lines of text?
being a chemical engineer and with an aggregate of 80% why you opt for TCS and not your core industry?
what is the defrenece between structure and union
Is main is a keyword in c?