Explain how do you print only part of a string?
No Answer is Posted For this Question
Be the First to Post Answer
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
Can you apply link and association interchangeably?
When is a null pointer used?
What is ctrl c called?
where do we use structure pointer?
What is the restrict keyword in C?
What is the memory allocated by the following definition ? int (*x)();
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
What is main return c?
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
the operator for exponencation is a.** b.^ c.% d.not available