330 views
1 votes
1 votes

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
1
RahulVerma3 asked Mar 22
44 views
My question is that can we use command line arguments without use of main function's parameters argc and *argv?
0 votes
0 votes
0 answers
2
RahulVerma3 asked Mar 16
112 views
I have a question that can we use command line arguments without main function arguments?int main(int argc, char argv){}
0 votes
0 votes
1 answer
3
SSR17 asked Feb 29
226 views
#include <stdio.h int main() { int i = -1; int x = (unsigned char)i; printf("%d", x); return 0; }output is 255 , but please explain how