How to implement a packet in C
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to print the prime numbers from 1 to 100?
What is the difference between array and pointer in c?
What is dynamic variable in c?
How pointer is different from array?
Explain that why C is procedural?
main() { int a,b; printf("%d,%d",scanf("%d%d",&a,&b)); } => do u mean above program's output... =>output will be:2,whatever you enter value for b. =>because scanf is a library fn which will return how many arguements it processes, and second value you are right mr.Satya but i found my self unable to understand that for the first time scanf returns the no of successful matches but how for the second time it returns the value of 'b'.while a function should return the same 'r' value every time.
sir, i cannot find the way how to write aprogram by using array on queue
What is the difference b/w main() in C language and main() in C++.
How can you print HELLO WORLD without using "semicolon"?
What is clrscr ()?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
Is it possible to run a c program without using main?If yes HOW??