Which of the following is not user defined data type? 1 : struct book { char name[10]; float price; int pages; }; 2 : long int l = 2.35; 3 : enum day {Sun, Mon, Tue, Wed};
SIKSHAPATH Latest Questions
Consider a school students data and create a simple bar graph followed by a stacked bar graph; “https://www.finley-lab.com/files/data/StudentGoals.csv”
1.A variable declared in a function can be used in main(). A. True B. False C. True if it is declared static D. None of the mentioned 2.What is the precedence of arithmetic operators (from highest to lowest)? A. %, *, /, +, – B. %, +, /, *, – C. +, -, %, *, ...
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 ...
Create a dataframe Student, perform below mentioned operation on a data frame. Explain with proper example. ...
Write a program to find the factorial of a number using function in C.