about c language
No Answer is Posted For this Question
Be the First to Post Answer
read an array and search an element
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
Where we use clrscr in c?
how to use enum datatype?Please explain me?
Why is c called a mid-level programming language?
What are the two types of structure?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
1,1,5,17,61,217,?,?.
Why c is a mother language?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.