Explain can the sizeof operator be used to tell the size of an array passed to a function?
No Answer is Posted For this Question
Be the First to Post Answer
How is null defined in c?
How do c compilers work?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
Explain what is a const pointer?
1 1 12 21 123 321 12344231 how i creat it with for loop??
Explain Basic concepts of C language?
write a program to interchange the value between two variable without using loop
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5