Why we not create function inside function.
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to print all permutations of a given string.
Explain function?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
discuss the steps needed to get a program from source code to executable in a system?
Q. where is the below variables stored ? - volatile, static, register
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
main() { int i=400,j=300; printf("%d..%d"); }
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
What is the heap?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?