What are called c variables?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can I read and write comma-delimited text?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
What is the memory allocated by the following definition ? int (*x)[10];
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
How would you obtain the current time and difference between two times?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is pragma in c?
Where define directive used?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What are the concepts introduced in OOPs?