What is the use of extern in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program in c to print **** * * * * ****
Explain about block scope in c?
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
write a program whose output will be- 1 12 123 1234
where do we use structure pointer?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
how the compiler treats any volatile variable?Explain with example.
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..
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
What does 1f stand for?