What are local variables c?
No Answer is Posted For this Question
Be the First to Post Answer
how could explain about job profile
What is volatile variable in c with example?
What is identifier in c?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
Concat two string with most overlapped substring has to removeĀ "abcd"+ "cdef" = "abcdef
can v write main() { main(); } Is it true?
When should volatile modifier be used?
discuss the steps needed to get a program from source code to executable in a system?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is bubble sort technique in c?
1. main() { printf("%d",printf("HelloSoft")); } Output?
we have a 3litres jug and a 5 litres jug and no measures on them. using these two jugs how can we measure 4 litres of water?