What is the difference between if else and switchstatement
No Answer is Posted For this Question
Be the First to Post Answer
why TCS selected more student in the software field from all institution.
Explain how can I convert a number to a string?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What is an array? What the different types of arrays in c?
What are file streams?
What are the advantages and disadvantages of a heap?
list the no of files created when c source file is compiled
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
Explain data types & how many data types supported by c?
What is operator precedence?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output