How can you check to see whether a symbol is defined?
No Answer is Posted For this Question
Be the First to Post Answer
List some of the dynamic data structures in C?
What is meant by inheritance?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
How can I open files mentioned on the command line, and parse option flags?
what is volatile in c language?
9 Answers Cap Gemini, HCL, Honeywell, TCS, Tech Mahindra,
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 would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC
what is the difference between global variable & static variable declared out side all the function in the file.
What is main void in c?
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
Is python a c language?