What are the types of c language?
No Answer is Posted For this Question
Be the First to Post Answer
what is the hexidecimal number of 4100?
What are reserved words?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
What is wrong with this initialization?
How do I convert a string to all upper or lower case?
What is pass by value in c?
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
How can I swap two values without using a temporary?
Write a pro-gramme to determine whether the number is even or odd?
why we shiuld use main keyword in C