Case sensitive means the languages which have different meaning between Capital letters like (A,B,C..) and small letters (a,b,c..)
So generally langauges are found to be case sensitive
Languages like Html,sql(DBMS) are not case sensitive...
But
Programming Languages like C,C++,Java,php etc are case sensitive where Letters have important.
Hope you understood!Chee rs!
User Profile
Collapse
-
On line 21 their is no need of semicolon same goes with line 50 and 59.Leave a comment:
-
-
I was programming for integer values that numbers as palindromeLeave a comment:
-
-
Number of palindromes between a and b
...Code:#include <stdio.h> int main(void) { int t,i,a,b,temp,rem,count,reverse; scanf("%d",&t); while(t--) { count=0; scanf("%d",&a); scanf("%d",&b); for(i=a;i<=b;i++) { reverse=0; temp=a; while(temp!=0) { rem=temp%10; reverse=reverse*10+rem; temp/=10; -
Find the index in a n*m matrix where the element is present
Problem:How is +3 is equal to -3.
I have use ideone.
Code:...Code:#include <stdio.h> long long int scan() { long long int n=0; char ch=getchar_unlocked(); while(ch<'0'||ch>'9') ch=getchar_unlocked(); while(ch>='0'&&ch<='9') { n=(n<<3)+(n<<1)+ch-'0'; ch=getchar_unlocked(); -
-
Installin WAMP Server to run PHP:
Goto www.wampserver.com and download WAMP Server.
Just install it like other softwares by just clicking next next...
Now go to START menu of windows and start wampserver.
Generally, the path is Start -> WapmServer -> start WampServer
Open your web browser and type http://localhost (or http://127.0.0.1 )
If you see a default WampServer home page, you...Leave a comment:
-
You can start participating in various coding competitions which are online as well as offline.Practic ing questions on sites like codechef,hacker rank,hackereart h,spoj,etc...wo uld definitely help you to go very far in programming!Leave a comment:
-
how is it sounds run always.No one wants the program to be forever it always has to some day terminate to give some results!Leave a comment:
-
You must keep your wampserver on and then type the localhost and the further steps.Leave a comment:
-
Installin WAMP Server to run PHP:
Goto www.wampserver.com and download WAMP Server.
Just install it like other softwares by just clicking next next...
Now go to START menu of windows and start wampserver.
Generally, the path is Start -> WapmServer -> start WampServer
Open your web browser and type http://localhost (or http://127.0.0.1 )
If you see a default WampServer home page,...Leave a comment:
-
vfork() is an obsolete optimization. Before good memory management, fork() made a full copy of the parent's memory, so it was pretty expensive. since in many cases a fork() was followed by exec(), which discards the current memory map and creates a new one, it was a needless expense. Nowadays, fork() doesn't copy the memory; it's simply set as "copy on write", so fork()+exec() is just as efficient as vfork()+exec().Leave a comment:
-
Its simple you can use split() which will split all words with spaces and then using that string array you can count the words as well as print them.
refer:http://docs.oracle.com/javase/7/docs...va.lang.String)Leave a comment:
-
you must always present the error lines as well as the error to get your doubt solve asap!Leave a comment:
-
rand() generates random value between 0 and 1 inclusive thus
whenever non zero is generated it moves to the if part and else when value of $flip=0.Same way if it goes into if part thrice than your $headcount becomes 3 which fails the do while loop and comes out of it.
Due to rand() you cant decide how many times either of if or else part would get executed!Leave a comment:
-
-
No activity results to display
Show More
Leave a comment: