What is the purpose of the statement: strcat (S2, S1)?
No Answer is Posted For this Question
Be the First to Post Answer
How to write a C program to determine the smallest among three nos using conditional operator?
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720
What is the size of array float a(10)?
Write a code to generate divisors of an integer?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Which is better malloc or calloc?
What is the maximum no. of arguments that can be given in a command line in C.?
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
program for reversing a selected line word by word when multiple lines are given without using strrev