the expression a=30*1000+2768; evalutes to
a) 32768
b) -32768
c) 113040
d) 0
What are the advantages and disadvantages of c language?
what is the difference between structural,object based,object orientd programming languages?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What are the different types of control structures?
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
What is c value paradox explain?
Why do u use # before include in a C Progam?
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
What is time null in c?
what do you mean by enumeration constant?
What is the difference between typeof(foo) and myFoo.GetType()?