how to execute a program using if else condition and the
output should enter number and the number is odd only...
No Answer is Posted For this Question
Be the First to Post Answer
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
a C prog to swap 2 no.s without using variables just an array?
How will you allocate memory to double a pointer?
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
How are variables declared in c?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
Explain 'bit masking'?
Why c is called free form language?
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE
What is the use of sizeof () in c?