What are the different types of control structures?
No Answer is Posted For this Question
Be the First to Post Answer
Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
How can you increase the size of a statically allocated array?
What is #include in c?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
What is the sizeof () a pointer?
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
What is the description for syntax errors?
c program to input values in a table(using 2D array) and print odd numbers from them
Explain the difference between fopen() and freopen().
What is bubble sort technique in c?
how to write hello word without using semicolon at the end?
What is c variable?