Explain the difference between the local variable and global variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
What is a function simple definition?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
what is the structure pointer?
Write a c pgm for leap year
11 Answers College School Exams Tests, IBM, TCS,
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .
How can we allocate array or structure bigger than 64kb?
What are enums in c?
What does #pragma once mean?
Can we declare function inside main?