Which is not valid in C
a) class aClass{public:int x;};
b) /* A comment */
c) char x=12;
What is sorting in c plus plus?
to find out the reverse digit of a given number
6 Answers Infosys, Microsoft, TCS, Wipro,
Explain what standard functions are available to manipulate strings?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
Why static is used in c?
Program to find larger of the two numbers without using if-else,while,for,switch
what are the advantage and disadvantage of recursion
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Write a simple program to find the size of different basic data types in C.
Why do we need volatile in c?
what is the output of printf("%d",(scanf("%d",10));