j.sivaraj
Newbie level 5
- Joined
- Dec 28, 2010
- Messages
- 9
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,323
how to declare string and hex value in the c array
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Code C - [expand] 1 char array[]={0x61,0x62,0x63};
Code C - [expand] 1 char array[]={'A','B','C'};
Code C - [expand] 1 char array[]="ABC"; // In this case a extra /0 will be added as 4th element
Code C - [expand] 1 char arrry[] = {'A', 'D', '0', '1', 0xD3, 0xFE};