What is a macro in c preprocessor?
No Answer is Posted For this Question
Be the First to Post Answer
Difference Between embedded software and soft ware?
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)
Why does this code crash?
What is wrong with this program statement?
Is stack a keyword in c?
why arithmetic operation can’t be performed on a void pointer?
How macro execution is faster than function ?
Why do we use namespace feature?
What are the back slash character constants or escape sequence charactersavailable in c?
What is an lvalue in c?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100