Identify the operators that is not used with pointer
a. &&
b. #
c. *
d. >>
Answers were Sorted based on User's Feedback
ANS. b. #
# is an operator used to convert a parameter to string
# should always be followed by a formal parameter (in below example parameter x)
Ex:
#define SAM(x) #x
printf(SAM(Hello)); // prints Hello
In other cases
char a = 0x10, b;
char *p = &b;
a. a&&*p is valid
b. *p is valid
c. a>>*p is valid
| Is This Answer Correct ? | 2 Yes | 1 No |
WHAT IS LOW LEVEL LANGUAGE?
I need a sort of an approximate strcmp routine?
What is I ++ in c programming?
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
Tell me when is a void pointer used?
What is the difference between procedural and declarative language?
Table of Sudoku n*n
How many bytes is a struct in c?
What is variable and explain rules to declare variable in c?
write a program to print sum of each row of a 2D array.
Write a program to print "hello world" without using a semicolon?
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain