How we assign value for int in this code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How we assign value for int in this code

#include <stdio.h> int main() { printf("int: %ld \n", sizeof(int)); printf("float: %ld \n", sizeof(float)); printf("double: %ld \n", sizeof(double)); printf("char: %ld \n", sizeof(char)); return 0; }

28th Oct 2020, 9:03 AM
Dinesh Babu
Dinesh Babu - avatar
1 Answer
+ 2
There's no variable can be assigned in this code.
28th Oct 2020, 9:39 AM
你知道規則,我也是
你知道規則,我也是 - avatar