Answers for "*= in c"

6

%= in c

Modulus AND assignment operator. It takes modulus using two operands and assigns the result to the left operand.
Posted by: Guest on May-10-2021
1

%.*s in c

example:
printf("%.*s",3,"hello");

output:hel
here 3 represents the length of the string to be printed in the "hello string".
Posted by: Guest on May-11-2020
2

poiner in c

int c, *pc;

// pc is address but c is not
pc = c; // Error

// &c is address but *pc is not
*pc = &c; // Error

// both &c and pc are addresses
pc = &c;

// both c and *pc values 
*pc = c;
Posted by: Guest on July-01-2020

Code answers related to "Objective-C"

Browse Popular Code Answers by Language