1.Which of the following declaration is not supported by C? A. String str; B. char *str; C. float str = 3e2; D. Both String str; & float str = 3e2; 2.Which of the following declaration is illegal? A. char *str = “Best C programming classes by Sanfoundry”; B. char str[] = “Best ...
Home/c language/Page 4
SIKSHAPATH Latest Questions
Berlin
Asked: January 13, 2022In: Programming Language
C program to count frequency of each element in an array
Pavanagg
Asked: January 1, 2022In: Programming Language
Which of the following is not a valid c variable name declaration? (a) float PI = 3.14; (b) double PI = 3.14; (c) int PI = 3.14; (d) #define PI 3.14;
Write a program to swap two numbers in C language. In other words, Write a program to exchange the values of two variables in C language.